rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +30 -0
- data/ext/groonga/rb-grn-context.c +27 -0
- data/ext/groonga/rb-grn-flushable.c +7 -0
- data/ext/groonga/rb-grn-index-column.c +28 -0
- data/ext/groonga/rb-grn-index-cursor.c +19 -0
- data/ext/groonga/rb-grn-logger.c +17 -3
- data/ext/groonga/rb-grn-object.c +236 -22
- data/ext/groonga/rb-grn-table.c +68 -42
- data/ext/groonga/rb-grn.h +1 -1
- data/lib/2.3/groonga.so +0 -0
- data/lib/2.4/groonga.so +0 -0
- data/lib/2.5/groonga.so +0 -0
- data/lib/2.6/groonga.so +0 -0
- data/lib/groonga/dumper.rb +3 -0
- data/lib/groonga/record.rb +2 -2
- data/test/groonga-test-utils.rb +28 -5
- data/test/run-test.rb +0 -2
- data/test/test-accessor.rb +63 -7
- data/test/test-context.rb +25 -0
- data/test/test-exception.rb +5 -0
- data/test/test-flushable.rb +51 -6
- data/test/test-index-column.rb +67 -6
- data/test/test-index-cursor.rb +26 -0
- data/test/test-logger.rb +56 -11
- data/test/test-plugin.rb +1 -0
- data/test/test-query-logger.rb +4 -3
- data/test/test-record.rb +2 -1
- data/test/test-remote.rb +40 -10
- data/test/test-schema-dumper.rb +13 -0
- data/test/test-table.rb +21 -1
- data/test/test-variable.rb +23 -7
- data/vendor/local/bin/generate-pdb.bat +21 -21
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpackc.dll +0 -0
- data/vendor/local/bin/libonigmo-6.dll +0 -0
- data/vendor/local/bin/libpcre-1.dll +0 -0
- data/vendor/local/bin/libpcrecpp-0.dll +0 -0
- data/vendor/local/bin/libpcreposix-0.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat.exe +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/pcregrep.exe +0 -0
- data/vendor/local/bin/pcretest.exe +0 -0
- data/vendor/local/bin/unlz4.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/cmake/RapidJSONConfig.cmake +3 -0
- data/vendor/local/cmake/RapidJSONConfigVersion.cmake +10 -0
- data/vendor/local/include/groonga/groonga/expr.h +16 -0
- data/vendor/local/include/groonga/groonga/obj.h +8 -0
- data/vendor/local/include/groonga/groonga/output.h +5 -0
- data/vendor/local/include/groonga/groonga/version.h +2 -2
- data/vendor/local/include/rapidjson/allocators.h +271 -0
- data/vendor/local/include/rapidjson/document.h +2575 -0
- data/vendor/local/include/rapidjson/encodedstream.h +299 -0
- data/vendor/local/include/rapidjson/encodings.h +716 -0
- data/vendor/local/include/rapidjson/error/en.h +74 -0
- data/vendor/local/include/rapidjson/error/error.h +155 -0
- data/vendor/local/include/rapidjson/filereadstream.h +99 -0
- data/vendor/local/include/rapidjson/filewritestream.h +104 -0
- data/vendor/local/include/rapidjson/fwd.h +151 -0
- data/vendor/local/include/rapidjson/internal/biginteger.h +290 -0
- data/vendor/local/include/rapidjson/internal/diyfp.h +258 -0
- data/vendor/local/include/rapidjson/internal/dtoa.h +245 -0
- data/vendor/local/include/rapidjson/internal/ieee754.h +78 -0
- data/vendor/local/include/rapidjson/internal/itoa.h +304 -0
- data/vendor/local/include/rapidjson/internal/meta.h +181 -0
- data/vendor/local/include/rapidjson/internal/pow10.h +55 -0
- data/vendor/local/include/rapidjson/internal/regex.h +701 -0
- data/vendor/local/include/rapidjson/internal/stack.h +230 -0
- data/vendor/local/include/rapidjson/internal/strfunc.h +55 -0
- data/vendor/local/include/rapidjson/internal/strtod.h +269 -0
- data/vendor/local/include/rapidjson/internal/swap.h +46 -0
- data/vendor/local/include/rapidjson/istreamwrapper.h +115 -0
- data/vendor/local/include/rapidjson/memorybuffer.h +70 -0
- data/vendor/local/include/rapidjson/memorystream.h +71 -0
- data/vendor/local/include/rapidjson/msinttypes/inttypes.h +316 -0
- data/vendor/local/include/rapidjson/msinttypes/stdint.h +300 -0
- data/vendor/local/include/rapidjson/ostreamwrapper.h +81 -0
- data/vendor/local/include/rapidjson/pointer.h +1358 -0
- data/vendor/local/include/rapidjson/prettywriter.h +255 -0
- data/vendor/local/include/rapidjson/rapidjson.h +615 -0
- data/vendor/local/include/rapidjson/reader.h +1879 -0
- data/vendor/local/include/rapidjson/schema.h +2006 -0
- data/vendor/local/include/rapidjson/stream.h +179 -0
- data/vendor/local/include/rapidjson/stringbuffer.h +117 -0
- data/vendor/local/include/rapidjson/writer.h +610 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
- data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
- data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +44 -18
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +9 -8
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +48 -15
- data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +84 -58
- data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +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/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +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 +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/command.rb +3 -4
- data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +267 -77
- data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +96 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +30 -7
- data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/loggable.rb +8 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger/flags.rb +70 -0
- data/vendor/local/lib/groonga/scripts/ruby/query_loggable.rb +8 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -2
- data/vendor/local/lib/groonga/scripts/ruby/time.rb +9 -0
- 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/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.8.2 +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libonigmo.a +0 -0
- data/vendor/local/lib/libonigmo.dll.a +0 -0
- data/vendor/local/lib/libonigmo.la +1 -1
- data/vendor/local/lib/libpcre.dll.a +0 -0
- data/vendor/local/lib/libpcrecpp.dll.a +0 -0
- data/vendor/local/lib/libpcreposix.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- 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/share/doc/RapidJSON/examples/CMakeLists.txt +42 -0
- data/vendor/local/share/doc/RapidJSON/examples/capitalize/capitalize.cpp +67 -0
- data/vendor/local/share/doc/RapidJSON/examples/condense/condense.cpp +32 -0
- data/vendor/local/share/doc/RapidJSON/examples/filterkey/filterkey.cpp +135 -0
- data/vendor/local/share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp +170 -0
- data/vendor/local/share/doc/RapidJSON/examples/jsonx/jsonx.cpp +207 -0
- data/vendor/local/share/doc/RapidJSON/examples/messagereader/messagereader.cpp +105 -0
- data/vendor/local/share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp +173 -0
- data/vendor/local/share/doc/RapidJSON/examples/pretty/pretty.cpp +30 -0
- data/vendor/local/share/doc/RapidJSON/examples/prettyauto/prettyauto.cpp +56 -0
- data/vendor/local/share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp +72 -0
- data/vendor/local/share/doc/RapidJSON/examples/serialize/serialize.cpp +173 -0
- data/vendor/local/share/doc/RapidJSON/examples/simpledom/simpledom.cpp +29 -0
- data/vendor/local/share/doc/RapidJSON/examples/simplereader/simplereader.cpp +42 -0
- data/vendor/local/share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp +36 -0
- data/vendor/local/share/doc/RapidJSON/examples/tutorial/tutorial.cpp +151 -0
- data/vendor/local/share/doc/RapidJSON/readme.md +160 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/client.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/community.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/development.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/genindex.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/index.html +11 -7
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -4
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +79 -8
- data/vendor/local/share/doc/groonga/en/html/install/docker.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/others.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/limitations.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news.html +498 -206
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/5.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/6.x.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +9 -6
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +77 -4
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +78 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +58 -4
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +11 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +9 -6
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_ngram.html +1005 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_pattern.html +240 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_table.html +246 -0
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/http.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/server/package.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/spec.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +68 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +37 -4
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +3 -3
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/client.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/community.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/development.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/index.html +11 -7
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -4
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +69 -8
- data/vendor/local/share/doc/groonga/ja/html/install/docker.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news.html +494 -206
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +9 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +75 -4
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +73 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +57 -4
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +9 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_ngram.html +998 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_pattern.html +240 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_table.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/spec.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +64 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +37 -4
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +3 -3
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +3 -3
- data/vendor/local/share/groonga/COPYING +502 -0
- data/vendor/local/share/groonga/mruby/LEGAL +58 -54
- data/vendor/local/share/license/mruby/AUTHORS +6 -2
- data/vendor/local/share/license/mruby/LEGAL +1 -1
- data/vendor/local/share/license/mruby/{MITL → LICENSE} +1 -1
- data/vendor/local/share/license/mruby/README.md +3 -3
- data/vendor/local/share/license/rapidjson/license.txt +57 -0
- metadata +126 -60
@@ -5,7 +5,7 @@
|
|
5
5
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
|
6
6
|
<head>
|
7
7
|
<meta charset="utf-8" />
|
8
|
-
<title>2.4. Ubuntu — Groonga v9.0.
|
8
|
+
<title>2.4. Ubuntu — Groonga v9.0.6ドキュメント</title>
|
9
9
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
10
10
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
11
11
|
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<li class="right" >
|
52
52
|
<a href="debian.html" title="2.3. Debian GNU/Linux"
|
53
53
|
accesskey="P">前へ</a> |</li>
|
54
|
-
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.
|
54
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
55
55
|
<li class="nav-item nav-item-1"><a href="../install.html" accesskey="U">2. インストール</a> »</li>
|
56
56
|
</ul>
|
57
57
|
</div>
|
@@ -129,9 +129,9 @@
|
|
129
129
|
</pre></div>
|
130
130
|
</div>
|
131
131
|
<p>ソースをダウンロードします:</p>
|
132
|
-
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>% wget https://packages.groonga.org/source/groonga/groonga-9.0.
|
133
|
-
% tar xvzf groonga-9.0.
|
134
|
-
% cd groonga-9.0.
|
132
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>% wget https://packages.groonga.org/source/groonga/groonga-9.0.6.tar.gz
|
133
|
+
% tar xvzf groonga-9.0.6.tar.gz
|
134
|
+
% cd groonga-9.0.6
|
135
135
|
</pre></div>
|
136
136
|
</div>
|
137
137
|
<p>configureを実行します( <code class="docutils literal notranslate"><span class="pre">configure</span></code> のオプションについては <a class="reference internal" href="others.html#source-configure"><span class="std std-ref">configure</span></a> を参照してください):</p>
|
@@ -196,7 +196,7 @@
|
|
196
196
|
<li class="right" >
|
197
197
|
<a href="debian.html" title="2.3. Debian GNU/Linux"
|
198
198
|
>前へ</a> |</li>
|
199
|
-
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.
|
199
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
200
200
|
<li class="nav-item nav-item-1"><a href="../install.html" >2. インストール</a> »</li>
|
201
201
|
</ul>
|
202
202
|
</div>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
|
6
6
|
<head>
|
7
7
|
<meta charset="utf-8" />
|
8
|
-
<title>2.1. Windows — Groonga v9.0.
|
8
|
+
<title>2.1. Windows — Groonga v9.0.6ドキュメント</title>
|
9
9
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
10
10
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
11
11
|
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<li class="right" >
|
52
52
|
<a href="../install.html" title="2. インストール"
|
53
53
|
accesskey="P">前へ</a> |</li>
|
54
|
-
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.
|
54
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
55
55
|
<li class="nav-item nav-item-1"><a href="../install.html" accesskey="U">2. インストール</a> »</li>
|
56
56
|
</ul>
|
57
57
|
</div>
|
@@ -70,14 +70,14 @@
|
|
70
70
|
<p>32-bit環境の場合は、x86のバイナリをpackages.groonga.orgからダウンロードしてください。</p>
|
71
71
|
<blockquote>
|
72
72
|
<div><ul class="simple">
|
73
|
-
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.
|
73
|
+
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.6-x86.exe">https://packages.groonga.org/windows/groonga/groonga-9.0.6-x86.exe</a></p></li>
|
74
74
|
</ul>
|
75
75
|
</div></blockquote>
|
76
76
|
<p>その後、バイナリを実行します。</p>
|
77
77
|
<p>64-bit環境の場合は、x64のバイナリをpackages.groonga.orgからダウンロードしてください。</p>
|
78
78
|
<blockquote>
|
79
79
|
<div><ul class="simple">
|
80
|
-
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.
|
80
|
+
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.6-x64.exe">https://packages.groonga.org/windows/groonga/groonga-9.0.6-x64.exe</a></p></li>
|
81
81
|
</ul>
|
82
82
|
</div></blockquote>
|
83
83
|
<p>その後、バイナリを実行します。</p>
|
@@ -88,14 +88,14 @@
|
|
88
88
|
<p>32-bit環境の場合は、x86のzipアーカイブをpackages.groonga.orgからダウンロードしてください。</p>
|
89
89
|
<blockquote>
|
90
90
|
<div><ul class="simple">
|
91
|
-
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.
|
91
|
+
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.6-x86.zip">https://packages.groonga.org/windows/groonga/groonga-9.0.6-x86.zip</a></p></li>
|
92
92
|
</ul>
|
93
93
|
</div></blockquote>
|
94
94
|
<p>その後、アーカイブを展開します。</p>
|
95
95
|
<p>64-bit環境の場合は、x64のzipアーカイブをpackages.groonga.orgからダウンロードしてください。</p>
|
96
96
|
<blockquote>
|
97
97
|
<div><ul class="simple">
|
98
|
-
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.
|
98
|
+
<li><p><a class="reference external" href="https://packages.groonga.org/windows/groonga/groonga-9.0.6-x64.zip">https://packages.groonga.org/windows/groonga/groonga-9.0.6-x64.zip</a></p></li>
|
99
99
|
</ul>
|
100
100
|
</div></blockquote>
|
101
101
|
<p>その後、アーカイブを展開します。</p>
|
@@ -113,24 +113,24 @@
|
|
113
113
|
<p>zipアーカイブをpackages.groonga.orgからダウンロードしてください。</p>
|
114
114
|
<blockquote>
|
115
115
|
<div><ul class="simple">
|
116
|
-
<li><p><a class="reference external" href="https://packages.groonga.org/source/groonga/groonga-9.0.
|
116
|
+
<li><p><a class="reference external" href="https://packages.groonga.org/source/groonga/groonga-9.0.6.zip">https://packages.groonga.org/source/groonga/groonga-9.0.6.zip</a></p></li>
|
117
117
|
</ul>
|
118
118
|
</div></blockquote>
|
119
119
|
<p>その後、アーカイブを展開します。</p>
|
120
120
|
<p>Groongaのソースフォルダへと移動します:</p>
|
121
|
-
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>> cd c:\Users\%USERNAME%\Downloads\groonga-9.0.
|
121
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>> cd c:\Users\%USERNAME%\Downloads\groonga-9.0.6
|
122
122
|
</pre></div>
|
123
123
|
</div>
|
124
124
|
<p><code class="docutils literal notranslate"><span class="pre">cmake</span></code> でビルドオプションを設定します。以下のコマンドラインは64-bit用のGroongaをビルドするためのものです。32-bit用のGroongaをビルドする場合は代わりに <code class="docutils literal notranslate"><span class="pre">-G</span> <span class="pre">"Visual</span> <span class="pre">Studio</span> <span class="pre">12</span> <span class="pre">2013"</span></code> パラメーターを指定してください:</p>
|
125
|
-
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.
|
125
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.6> cmake . -G "Visual Studio 12 2013 Win64" -DCMAKE_INSTALL_PREFIX=C:\Groonga
|
126
126
|
</pre></div>
|
127
127
|
</div>
|
128
128
|
<p>ビルド:</p>
|
129
|
-
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.
|
129
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.6> cmake --build . --config Release
|
130
130
|
</pre></div>
|
131
131
|
</div>
|
132
132
|
<p>インストール:</p>
|
133
|
-
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.
|
133
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga-9.0.6> cmake --build . --config Release --target Install
|
134
134
|
</pre></div>
|
135
135
|
</div>
|
136
136
|
<p>以上の手順で <a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga 実行ファイル</span></a> が <code class="docutils literal notranslate"><span class="pre">c:\Groonga\bin\groonga.exe</span></code> にインストールされます。</p>
|
@@ -185,7 +185,7 @@
|
|
185
185
|
<li class="right" >
|
186
186
|
<a href="../install.html" title="2. インストール"
|
187
187
|
>前へ</a> |</li>
|
188
|
-
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.
|
188
|
+
<li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
189
189
|
<li class="nav-item nav-item-1"><a href="../install.html" >2. インストール</a> »</li>
|
190
190
|
</ul>
|
191
191
|
</div>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
|
6
6
|
<head>
|
7
7
|
<meta charset="utf-8" />
|
8
|
-
<title>9. 制限事項 — Groonga v9.0.
|
8
|
+
<title>9. 制限事項 — Groonga v9.0.6ドキュメント</title>
|
9
9
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
10
10
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
11
11
|
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<li class="right" >
|
52
52
|
<a href="spec/search.html" title="8.2. 検索"
|
53
53
|
accesskey="P">前へ</a> |</li>
|
54
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.
|
54
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
55
55
|
</ul>
|
56
56
|
</div>
|
57
57
|
|
@@ -152,7 +152,7 @@
|
|
152
152
|
<li class="right" >
|
153
153
|
<a href="spec/search.html" title="8.2. 検索"
|
154
154
|
>前へ</a> |</li>
|
155
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.
|
155
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
156
156
|
</ul>
|
157
157
|
</div>
|
158
158
|
<div class="footer" role="contentinfo">
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
|
6
6
|
<head>
|
7
7
|
<meta charset="utf-8" />
|
8
|
-
<title>お知らせ — Groonga v9.0.
|
8
|
+
<title>お知らせ — Groonga v9.0.6ドキュメント</title>
|
9
9
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
10
10
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
11
11
|
|
@@ -43,7 +43,7 @@
|
|
43
43
|
<li class="right" style="margin-right: 10px">
|
44
44
|
<a href="genindex.html" title="総合索引"
|
45
45
|
accesskey="I">索引</a></li>
|
46
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.
|
46
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
47
47
|
</ul>
|
48
48
|
</div>
|
49
49
|
|
@@ -54,12 +54,276 @@
|
|
54
54
|
|
55
55
|
<div class="section" id="news">
|
56
56
|
<h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
57
|
+
<div class="section" id="release-9-0-6-2019-08-05">
|
58
|
+
<span id="release-9-0-6"></span><h2>9.0.6リリース - 2019-08-05<a class="headerlink" href="#release-9-0-6-2019-08-05" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
59
|
+
<div class="section" id="improvements">
|
60
|
+
<h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
61
|
+
<ul class="simple">
|
62
|
+
<li><p>Debian 10 (buster)をサポートしました。</p></li>
|
63
|
+
</ul>
|
64
|
+
</div>
|
65
|
+
<div class="section" id="fixes">
|
66
|
+
<h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
67
|
+
<ul class="simple">
|
68
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] 検索エスカレーションが起こった際に検索がエラーになるバグを修正しました。</p></li>
|
69
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] ネストされた等価演算を使った際に、誤った検索結果を返すことがあるバグを修正しました。</p></li>
|
70
|
+
<li><p>[geo_distance_location_rectangle] <code class="docutils literal notranslate"><span class="pre">load</span></code> のフォーマットが誤っている例を修正しました。 [GitHub#1023] [yagisumiさんがパッチ提供]</p></li>
|
71
|
+
<li><p>[<a class="reference internal" href="tutorial/micro_blog.html"><span class="doc">マイクロブログ検索システムの作成</span></a>] 検索結果が誤っている例を修正しました。[GitHub#1024][yagisumiさんがパッチ提供]</p></li>
|
72
|
+
</ul>
|
73
|
+
</div>
|
74
|
+
<div class="section" id="thanks">
|
75
|
+
<h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
76
|
+
<ul class="simple">
|
77
|
+
<li><p>yagisumiさん</p></li>
|
78
|
+
</ul>
|
79
|
+
</div>
|
80
|
+
</div>
|
81
|
+
<div class="section" id="release-9-0-5-2019-07-30">
|
82
|
+
<span id="release-9-0-5"></span><h2>9.0.5リリース - 2019-07-30<a class="headerlink" href="#release-9-0-5-2019-07-30" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
83
|
+
<div class="admonition warning">
|
84
|
+
<p class="admonition-title">警告</p>
|
85
|
+
<p>このリリースには影響の大きい不具合があることがわかりました。<code class="docutils literal notranslate"><span class="pre">select</span></code> コマンドが誤った結果を返します。この問題を修正し、9.0.6をリリースする予定です。Groonga 9.0.5は使わず、後日リリースされる9.0.6を使ってください。問題の詳細については <a class="reference external" href="http://groonga.org/ja/blog/2019/07/30/groonga-9.0.5.html">http://groonga.org/ja/blog/2019/07/30/groonga-9.0.5.html</a> で解説しています。</p>
|
86
|
+
</div>
|
87
|
+
<div class="section" id="id1">
|
88
|
+
<h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
89
|
+
<ul class="simple">
|
90
|
+
<li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] 検索対象のシャードが十分に大きい時にのみ最適化を適用するように改良しました。</p>
|
91
|
+
<ul>
|
92
|
+
<li><p>この機能は、ソートキーが同じ時にオフセット間で検索結果が重複するのを減らします。</p></li>
|
93
|
+
<li><p>十分に大きいのしきい値はデフォルトで10000レコードです。</p></li>
|
94
|
+
</ul>
|
95
|
+
</li>
|
96
|
+
<li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">ノーマライザー</span></a>] <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> に新しいオプション <code class="docutils literal notranslate"><span class="pre">unify_to_katakana</span></code> を追加しました。</p>
|
97
|
+
<ul>
|
98
|
+
<li><p>このオプションは、平仮名を片仮名にノーマライズします。</p></li>
|
99
|
+
<li><p>例えば、 <code class="docutils literal notranslate"><span class="pre">ゔぁゔぃゔゔぇゔぉ</span></code> を <code class="docutils literal notranslate"><span class="pre">ヴァヴィヴヴェヴォ</span></code> にノーマライズします。</p></li>
|
100
|
+
</ul>
|
101
|
+
</li>
|
102
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] slicesパラメーターでdrilldownsをサポートしました。</p></li>
|
103
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] slicesパラメーターでcolumnsをサポートしました。</p></li>
|
104
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] initialステージ内でslicesパラメーターが <code class="docutils literal notranslate"><span class="pre">_score</span></code> を参照できるよう改良しました。</p></li>
|
105
|
+
<li><p>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>], [<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] slicesパラメータ指定時に、slices実行前の式からもキーワードを抽出するように改良しました。</p></li>
|
106
|
+
<li><p>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>], [<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] slicesパラメータ指定時に、slices実行前の式からもスコアーを収集するように改良しました。</p></li>
|
107
|
+
<li><p>ポスティングリストにポスティングを追加する際に自動的にスコアーを1増やすのをやめました。</p>
|
108
|
+
<ul>
|
109
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">grn_ii_posting_add</span></code> は、この変更によって後方互換性がなくなりました。互換性を保つには、呼び出し側でスコアーを増やす必要があります。</p></li>
|
110
|
+
</ul>
|
111
|
+
</li>
|
112
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">XXX.YYY.ZZZ</span> <span class="pre">==</span> <span class="pre">AAA</span></code> のようなネストされた等価演算のインデックス検索をサポートしました。</p></li>
|
113
|
+
<li><p>ハッシュテーブル使用時にハッシュの再構築の間隔を少なくしました。</p>
|
114
|
+
<ul>
|
115
|
+
<li><p>この昨日によって、結果出力のパフォーマンスが改善します。</p></li>
|
116
|
+
</ul>
|
117
|
+
</li>
|
118
|
+
<li><p>クエリーログにプレフィックスを追加できるようになりました。</p>
|
119
|
+
<ul>
|
120
|
+
<li><p>どの条件のフィルターなのかわかりやすくなります。</p></li>
|
121
|
+
</ul>
|
122
|
+
</li>
|
123
|
+
<li><p>Apache Arrow 1.0.0 をサポートしました。</p>
|
124
|
+
<ul>
|
125
|
+
<li><p>ただし、このバージョンはまだ、リリースされていません。</p></li>
|
126
|
+
</ul>
|
127
|
+
</li>
|
128
|
+
<li><p>Amazon Linux 2 をサポートしました。</p></li>
|
129
|
+
</ul>
|
130
|
+
</div>
|
131
|
+
<div class="section" id="id2">
|
132
|
+
<h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
133
|
+
<ul class="simple">
|
134
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">"[1,</span> <span class="pre">2,</span> <span class="pre">3]"</span></code> のようなJSONのベクター値がインデックスされないバグを修正しました。</p></li>
|
135
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">table_create</span></code> のテストのパラメーター名が誤っていたバグを修正しました。[GitHub#1000][yagisumiさんがパッチ提供]</p></li>
|
136
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">command_version=3</span></code> でdrilldownコマンドが実行された際に、ドリルダウンのラベルが空になるバグを修正しました。[GitHub#1001][yagisumiさんの報告]</p></li>
|
137
|
+
<li><p>MinGWでWindows版のパッケージのビルドが失敗するバグを修正しました。</p></li>
|
138
|
+
<li><p>MinGWのWindows版パッケージにCOPYINGがインストールされないバグを修正しました。</p></li>
|
139
|
+
<li><p>ハイライト対象として、クエリーにテキスト以外を指定した際に、キーワードがハイライトされないバグを修正しました。</p></li>
|
140
|
+
<li><p>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] のMessagePack形式の出力が壊れるバグを修正しました。[GitHub#1009][yagisumiさんの報告]</p></li>
|
141
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">index_column_diff</span></code> のMessagePack形式の出力が壊れるバグを修正しました。[GitHub#1009][yagisumiさんの報告]</p></li>
|
142
|
+
<li><p>[<a class="reference internal" href="reference/commands/suggest.html"><span class="doc">suggest</span></a>] のMessagePack形式の出力が壊れるバグを修正しました。[GitHub#1011][yagisumiさんの報告]</p></li>
|
143
|
+
<li><p>パトリシアトライのテーブルの検索時などにreallocのサイズが十分に確保されないバグを修正しました。[島津製作所さんの報告]</p>
|
144
|
+
<ul>
|
145
|
+
<li><p>Groongaはこのバグでクラッシュする可能性があります。</p></li>
|
146
|
+
</ul>
|
147
|
+
</li>
|
148
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">groonga-release</span></code> version 1.5.0より前から1.5.0-1へアップデートした際に <code class="docutils literal notranslate"><span class="pre">groonga.repo</span></code> が削除されるバグを修正しました。[groonga-talk:429][Josep Sanzさんの報告]</p></li>
|
149
|
+
</ul>
|
150
|
+
</div>
|
151
|
+
<div class="section" id="id3">
|
152
|
+
<h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
153
|
+
<ul class="simple">
|
154
|
+
<li><p>yagisumiさん</p></li>
|
155
|
+
<li><p>島津製作所さん</p></li>
|
156
|
+
<li><p>Josep Sanzさん</p></li>
|
157
|
+
</ul>
|
158
|
+
</div>
|
159
|
+
</div>
|
160
|
+
<div class="section" id="release-9-0-4-2019-06-29">
|
161
|
+
<span id="release-9-0-4"></span><h2>9.0.4リリース - 2019-06-29<a class="headerlink" href="#release-9-0-4-2019-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
162
|
+
<div class="section" id="id4">
|
163
|
+
<h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
164
|
+
<ul class="simple">
|
165
|
+
<li><p>配列リテラルの複数要素をサポートしました。</p></li>
|
166
|
+
<li><p>ベクターの等価演算をサポートしました。</p></li>
|
167
|
+
<li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] 出力するクエリーログを追加しました。</p>
|
168
|
+
<ul>
|
169
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code> コマンドが、以下のタイミングでログを出力するようになります。</p>
|
170
|
+
<ul>
|
171
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code> によるフィルター後</p></li>
|
172
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code> によるソート後</p></li>
|
173
|
+
<li><p>動的カラム適用後</p></li>
|
174
|
+
<li><p>結果出力後</p></li>
|
175
|
+
</ul>
|
176
|
+
</li>
|
177
|
+
<li><p>この機能によって、このコマンドがどこまで完了したかを見ることができます。</p></li>
|
178
|
+
</ul>
|
179
|
+
</li>
|
180
|
+
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> の説明をドキュメントに追加しました。</p></li>
|
181
|
+
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code> の説明をドキュメントに追加しました。</p></li>
|
182
|
+
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> の説明をドキュメントに追加しました。</p></li>
|
183
|
+
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] groonga.logへの操作ログの出力を追加しました。</p>
|
184
|
+
<ul>
|
185
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">grndb</span></code> コマンドが実行結果と実行過程を出力するようになります。</p></li>
|
186
|
+
</ul>
|
187
|
+
</li>
|
188
|
+
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 空のファイルのチェックをサポートしました。</p>
|
189
|
+
<ul>
|
190
|
+
<li><p>この機能によって、空のファイルが存在するかどうかをチェックできます。</p></li>
|
191
|
+
</ul>
|
192
|
+
</li>
|
193
|
+
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 新しいオプション <code class="docutils literal notranslate"><span class="pre">--since</span></code> を追加しました。</p>
|
194
|
+
<ul>
|
195
|
+
<li><p>検査の範囲を指定できます。</p></li>
|
196
|
+
</ul>
|
197
|
+
</li>
|
198
|
+
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 新しいオプション <code class="docutils literal notranslate"><span class="pre">--since</span></code> についてのドキュメントを追加しました。</p></li>
|
199
|
+
<li><p>RapidJSONをバンドルしました。</p>
|
200
|
+
<ul>
|
201
|
+
<li><p>部分的にGroongaのJSONパーサーとしてRapidJSONを使うことができます。(この機能はまだ部分的です。)</p></li>
|
202
|
+
<li><p>これを使うことでより厳格なJSONのパースができます。</p></li>
|
203
|
+
</ul>
|
204
|
+
</li>
|
205
|
+
<li><p>JSON文字列からint32のベクターへのキャストをサポートしました。</p>
|
206
|
+
<ul>
|
207
|
+
<li><p>この機能は、RapidJSONが必要です。</p></li>
|
208
|
+
</ul>
|
209
|
+
</li>
|
210
|
+
<li><p>[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] <code class="docutils literal notranslate"><span class="pre">default_operator</span></code> を追加しました。</p>
|
211
|
+
<ul>
|
212
|
+
<li><p>"keyword1 keyword2"時の演算子をカスタマイズできます。</p></li>
|
213
|
+
<li><p>デフォルトでは、"keyword1 keyword2"はAND演算です。</p></li>
|
214
|
+
<li><p>"keyword1 keyword2"の演算子をAND以外に変更できます。</p></li>
|
215
|
+
</ul>
|
216
|
+
</li>
|
217
|
+
</ul>
|
218
|
+
</div>
|
219
|
+
<div class="section" id="id5">
|
220
|
+
<h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
221
|
+
<ul class="simple">
|
222
|
+
<li><p>[optimizer] 複数のfilter条件と <code class="docutils literal notranslate"><span class="pre">xxx.yyy=="keyword"</span></code> のような条件を指定した際にエラーが発生するバグを修正しました。</p></li>
|
223
|
+
<li><p>GroongaのWindows用のパッケージ(VC++版)に不足していたライセンスファイルを追加しました。</p></li>
|
224
|
+
<li><p>GroongaのWindows用のパッケージ(VC++版)UCRTランタイムを追加しました。</p></li>
|
225
|
+
<li><p>[<a class="reference internal" href="reference/window_function.html"><span class="doc">ウィンドウ関数</span></a>] メモリリークを修正しました。</p>
|
226
|
+
<ul>
|
227
|
+
<li><p>これは、複数のウインドウに対してソートキーを適用した際に発生します。 [Takashi Hashidaさんがパッチ提供]</p></li>
|
228
|
+
</ul>
|
229
|
+
</li>
|
230
|
+
</ul>
|
231
|
+
</div>
|
232
|
+
<div class="section" id="id6">
|
233
|
+
<h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
234
|
+
<ul class="simple">
|
235
|
+
<li><p>Takashi Hashidaさん</p></li>
|
236
|
+
</ul>
|
237
|
+
</div>
|
238
|
+
</div>
|
239
|
+
<div class="section" id="release-9-0-3-2019-05-29">
|
240
|
+
<span id="release-9-0-3"></span><h2>9.0.3リリース - 2019-05-29<a class="headerlink" href="#release-9-0-3-2019-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
241
|
+
<div class="section" id="id7">
|
242
|
+
<h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
243
|
+
<ul class="simple">
|
244
|
+
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] より多くのクエリーログを追加しました。</p>
|
245
|
+
<ul>
|
246
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">select</span></code> コマンドが、以下のタイミングでログを出力するようになります。</p>
|
247
|
+
<ul>
|
248
|
+
<li><p>ドリルダウンによるソート後</p></li>
|
249
|
+
<li><p>ドリルダウンによるフィルター後</p></li>
|
250
|
+
</ul>
|
251
|
+
</li>
|
252
|
+
<li><p>この機能によって、このコマンドがどこまで完了したかを見ることができます。</p></li>
|
253
|
+
</ul>
|
254
|
+
</li>
|
255
|
+
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] より多くのクエリーログを追加しました。</p>
|
256
|
+
<ul>
|
257
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">logical_select</span></code> コマンドが、以下のタイミングでログを出力するようになります。</p>
|
258
|
+
<ul>
|
259
|
+
<li><p>動的カラム作成後</p></li>
|
260
|
+
<li><p>ドリルダウンによるグループ化後</p></li>
|
261
|
+
<li><p>ドリルダウンによるソート後</p></li>
|
262
|
+
<li><p>ドリルダウンによるフィルター後</p></li>
|
263
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">logical_select</span></code> によるソート後</p></li>
|
264
|
+
</ul>
|
265
|
+
</li>
|
266
|
+
<li><p>この機能によって、このコマンドがどこまで完了したかを見ることができます。</p></li>
|
267
|
+
</ul>
|
268
|
+
</li>
|
269
|
+
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] <code class="docutils literal notranslate"><span class="pre">limit</span></code> オプションを使用したときのソートのパフォーマンスを少し改善しました。</p></li>
|
270
|
+
<li><p>[index_column_diff] パフォーマンスを改善しました。</p>
|
271
|
+
<ul>
|
272
|
+
<li><p>このコマンドの実行速度を大幅に短くしました。</p></li>
|
273
|
+
</ul>
|
274
|
+
</li>
|
275
|
+
<li><p>[index_column_diff] 無効な参照を無視するように改良しました。</p></li>
|
276
|
+
<li><p>[index_column_diff] ベクター要素の重複に対応しました。</p></li>
|
277
|
+
<li><p>[Normalizers] Unicode 12.1 の NFKC(Normalization Form Compatibility Composition)をベースにしたノーマライザー <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC121</span></code> を追加しました。</p></li>
|
278
|
+
<li><p>[TokenFilters] Unicode 12.1 の NFKC(Normalization Form Compatibility Composition)をベースにしたトークンフィルター <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC121</span></code> を追加しました。</p></li>
|
279
|
+
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 新しいオプション <code class="docutils literal notranslate"><span class="pre">--log-flags</span></code> を追加しました。</p>
|
280
|
+
<ul>
|
281
|
+
<li><p>groonga実行ファイルと同様、ログに出力する項目を指定できます。</p></li>
|
282
|
+
<li><p>サポートされているログフラグについては、[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga 実行ファイル</span></a>] を参照してください。</p></li>
|
283
|
+
</ul>
|
284
|
+
</li>
|
285
|
+
<li><p>[<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] 検索にマッチしない時の戻り値を変更する新しいオプションを追加しました。</p></li>
|
286
|
+
<li><p>[<a class="reference internal" href="reference/commands/plugin_unregister.html"><span class="doc">plugin_unregister</span></a>] Windowsのフルパスをサポートしました。</p></li>
|
287
|
+
<li><p>複数行のログメッセージをサポートしました。</p>
|
288
|
+
<ul>
|
289
|
+
<li><p>この機能によって、複数行に渡るログメッセージが見やすくなります。</p></li>
|
290
|
+
</ul>
|
291
|
+
</li>
|
292
|
+
<li><p>インデックスを使って検索した際、キーをGroongaのログに出力するようにしました。</p></li>
|
293
|
+
<li><p>[<a class="reference internal" href="tutorial/match_columns.html"><span class="doc">match_columnsパラメータ</span></a>] インデックスの重みのドキュメントを追加しました。</p></li>
|
294
|
+
<li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] <code class="docutils literal notranslate"><span class="pre">order</span></code> パラメータの説明を追加しました。</p></li>
|
295
|
+
<li><p>[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] 新しい統計 <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID</span></code> と <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></code> の説明を追加しました。</p></li>
|
296
|
+
<li><p>Ubuntu 14.04 のサポートをやめました。</p></li>
|
297
|
+
</ul>
|
298
|
+
</div>
|
299
|
+
<div class="section" id="id8">
|
300
|
+
<h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
301
|
+
<ul class="simple">
|
302
|
+
<li><p>[index_column_diff] <code class="docutils literal notranslate"><span class="pre">remains</span></code> を多く報告するバグを修正しました。</p></li>
|
303
|
+
<li><p><code class="docutils literal notranslate"><span class="pre">--without-onigmo</span></code> オプションを使った際にビルドエラーになるバグを修正しました。[GitHub#951] [Tomohiro KATOさんが報告]</p></li>
|
304
|
+
<li><p>"CVE: 2019-11675"の脆弱性を修正しました。[Wolfgang Hotwagnerさんが報告]</p></li>
|
305
|
+
<li><p>Windows版のGroongaにて、拡張パスプレフィックス <code class="docutils literal notranslate"><span class="pre">\\?\</span></code> を削除しました。[GitHub#958] [yagisumiさんが報告]</p>
|
306
|
+
<ul>
|
307
|
+
<li><p>この拡張プレフィックスは、プラグインを正確に見つけられないというバグを引き起こします。</p></li>
|
308
|
+
</ul>
|
309
|
+
</li>
|
310
|
+
</ul>
|
311
|
+
</div>
|
312
|
+
<div class="section" id="id9">
|
313
|
+
<h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
314
|
+
<ul class="simple">
|
315
|
+
<li><p>Tomohiro KATOさん</p></li>
|
316
|
+
<li><p>Wolfgang Hotwagnerさん</p></li>
|
317
|
+
<li><p>yagisumiさん</p></li>
|
318
|
+
</ul>
|
319
|
+
</div>
|
320
|
+
</div>
|
57
321
|
<div class="section" id="release-9-0-2-2019-04-29">
|
58
322
|
<span id="release-9-0-2"></span><h2>9.0.2リリース - 2019-04-29<a class="headerlink" href="#release-9-0-2-2019-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
59
323
|
<p>このリリースからVC++で作成したWindows版パッケージを提供します。</p>
|
60
324
|
<p>今までどおり、MinGWで作成したWindows版パッケージも提供しますが、近いうちにMinGWで作ったパッケージの代わりにVC++で作ったパッケージを提供する予定です。</p>
|
61
|
-
<div class="section" id="
|
62
|
-
<h3>改良<a class="headerlink" href="#
|
325
|
+
<div class="section" id="id10">
|
326
|
+
<h3>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
63
327
|
<ul class="simple">
|
64
328
|
<li><p>[<a class="reference internal" href="reference/commands/column_create.html"><span class="doc">column_create</span></a>] 新しいフラグ <code class="docutils literal notranslate"><span class="pre">INDEX_LARGE</span></code> を追加しました。</p>
|
65
329
|
<ul>
|
@@ -90,15 +354,15 @@
|
|
90
354
|
</li>
|
91
355
|
</ul>
|
92
356
|
</div>
|
93
|
-
<div class="section" id="
|
94
|
-
<h3>修正<a class="headerlink" href="#
|
357
|
+
<div class="section" id="id11">
|
358
|
+
<h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
95
359
|
<ul class="simple">
|
96
360
|
<li><p>一部の環境でコンパイルエラー "unknown type name 'bool'" が発生する問題を修正しました。</p></li>
|
97
361
|
<li><p>mrubyを経由して実行するコマンド(例えば、 <code class="docutils literal notranslate"><span class="pre">logical_select</span></code>、 <code class="docutils literal notranslate"><span class="pre">logical_range_filter</span></code>、 <code class="docutils literal notranslate"><span class="pre">logical_count</span></code> 等)で、Int32を超える数を正しく出力できない問題を修正しました。[GitHub#936] [HashidaTKSさんがパッチ提供]</p></li>
|
98
362
|
</ul>
|
99
363
|
</div>
|
100
|
-
<div class="section" id="
|
101
|
-
<h3>感謝<a class="headerlink" href="#
|
364
|
+
<div class="section" id="id12">
|
365
|
+
<h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
102
366
|
<ul class="simple">
|
103
367
|
<li><p>HashidaTKSさん</p></li>
|
104
368
|
</ul>
|
@@ -106,8 +370,8 @@
|
|
106
370
|
</div>
|
107
371
|
<div class="section" id="release-9-0-1-2019-03-29">
|
108
372
|
<span id="release-9-0-1"></span><h2>9.0.1リリース - 2019-03-29<a class="headerlink" href="#release-9-0-1-2019-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
109
|
-
<div class="section" id="
|
110
|
-
<h3>改良<a class="headerlink" href="#
|
373
|
+
<div class="section" id="id13">
|
374
|
+
<h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
111
375
|
<ul class="simple">
|
112
376
|
<li><p>ベクターの値にnullが使えるようになりました。</p>
|
113
377
|
<ul>
|
@@ -142,8 +406,8 @@
|
|
142
406
|
<li><p>壊れたインデックスをチェックするためのコマンド <code class="docutils literal notranslate"><span class="pre">index_column_diff</span></code> を追加しました。コマンド実行の進捗を記録したい場合は、ログレベルをdebugに設定してください。</p></li>
|
143
407
|
</ul>
|
144
408
|
</div>
|
145
|
-
<div class="section" id="
|
146
|
-
<h3>修正<a class="headerlink" href="#
|
409
|
+
<div class="section" id="id14">
|
410
|
+
<h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
147
411
|
<ul class="simple">
|
148
412
|
<li><p>[<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] 一致しない場合、空のベクターを返すよう変更しました。</p>
|
149
413
|
<ul>
|
@@ -178,8 +442,8 @@
|
|
178
442
|
<li><p>インデックス更新時に十分な作業領域を確保できずにクラッシュするバクを修正しました。</p></li>
|
179
443
|
</ul>
|
180
444
|
</div>
|
181
|
-
<div class="section" id="
|
182
|
-
<h3>感謝<a class="headerlink" href="#
|
445
|
+
<div class="section" id="id15">
|
446
|
+
<h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
183
447
|
<ul class="simple">
|
184
448
|
<li><p>shiro615さん</p></li>
|
185
449
|
<li><p>HashidaTKSさん</p></li>
|
@@ -191,8 +455,8 @@
|
|
191
455
|
<div class="section" id="release-9-0-0-2019-02-09">
|
192
456
|
<span id="release-9-0-0"></span><h2>9.0.0リリース - 2019-02-09<a class="headerlink" href="#release-9-0-0-2019-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
193
457
|
<p>メジャーバージョンアップです! メジャーバージョンアップですが、互換性は壊れていないので、データベースを再構築することなく9.0.0へアップグレードできます。</p>
|
194
|
-
<div class="section" id="
|
195
|
-
<h3>改良<a class="headerlink" href="#
|
458
|
+
<div class="section" id="id16">
|
459
|
+
<h3>改良<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
196
460
|
<ul class="simple">
|
197
461
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] 新しいトークナイザー <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> を追加しました。</p>
|
198
462
|
<ul>
|
@@ -230,8 +494,8 @@
|
|
230
494
|
</div>
|
231
495
|
<div class="section" id="release-8-1-1-2019-01-29">
|
232
496
|
<span id="release-8-1-1"></span><h2>8.1.1リリース - 2019-01-29<a class="headerlink" href="#release-8-1-1-2019-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
233
|
-
<div class="section" id="
|
234
|
-
<h3>改良<a class="headerlink" href="#
|
497
|
+
<div class="section" id="id17">
|
498
|
+
<h3>改良<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
235
499
|
<ul class="simple">
|
236
500
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] 新しい引数 <code class="docutils literal notranslate"><span class="pre">--load_table</span></code> 、<code class="docutils literal notranslate"><span class="pre">--load_columns</span></code> 、 <code class="docutils literal notranslate"><span class="pre">--load_values</span></code> を追加しました。</p>
|
237
501
|
<ul>
|
@@ -332,8 +596,8 @@
|
|
332
596
|
</li>
|
333
597
|
</ul>
|
334
598
|
</div>
|
335
|
-
<div class="section" id="
|
336
|
-
<h3>修正<a class="headerlink" href="#
|
599
|
+
<div class="section" id="id18">
|
600
|
+
<h3>修正<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
337
601
|
<ul>
|
338
602
|
<li><p>インデックスの更新エラー発生時にメモリリークする問題を修正しました。</p></li>
|
339
603
|
<li><p>[<a class="reference internal" href="reference/normalizers.html"><span class="doc">ノーマライザー</span></a>] ステートレスなノーマライザーとステートフルなノーマライザーを同時に使用した時に、それらが誤った結果を返すバグを修正しました。</p>
|
@@ -365,14 +629,14 @@
|
|
365
629
|
</div>
|
366
630
|
<div class="section" id="release-8-1-0-2018-12-29">
|
367
631
|
<span id="release-8-1-0"></span><h2>8.1.0リリース - 2018-12-29<a class="headerlink" href="#release-8-1-0-2018-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
368
|
-
<div class="section" id="
|
369
|
-
<h3>改良<a class="headerlink" href="#
|
632
|
+
<div class="section" id="id19">
|
633
|
+
<h3>改良<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
370
634
|
<ul class="simple">
|
371
635
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.15.8に更新しました。</p></li>
|
372
636
|
</ul>
|
373
637
|
</div>
|
374
|
-
<div class="section" id="
|
375
|
-
<h3>修正<a class="headerlink" href="#
|
638
|
+
<div class="section" id="id20">
|
639
|
+
<h3>修正<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
376
640
|
<ul class="simple">
|
377
641
|
<li><p><code class="docutils literal notranslate"><span class="pre">io_flush</span></code> コマンド実行後に、DBに対するアンロックが常にフラッシュの実行後になってしまうバグを修正しました。</p></li>
|
378
642
|
<li><p>参照先を持たないレコードを持つテーブルに対して <code class="docutils literal notranslate"><span class="pre">reindex</span></code> コマンドを実行した際に、 <code class="docutils literal notranslate"><span class="pre">reindex</span></code> コマンドが終了しないバグを修正しました。</p></li>
|
@@ -381,8 +645,8 @@
|
|
381
645
|
</div>
|
382
646
|
<div class="section" id="release-8-0-9-2018-11-29">
|
383
647
|
<span id="release-8-0-9"></span><h2>8.0.9リリース - 2018-11-29<a class="headerlink" href="#release-8-0-9-2018-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
384
|
-
<div class="section" id="
|
385
|
-
<h3>改良<a class="headerlink" href="#
|
648
|
+
<div class="section" id="id21">
|
649
|
+
<h3>改良<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
386
650
|
<ul class="simple">
|
387
651
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] トークナイザーの作成に失敗した際のエラーメッセージにトークナイザーの名前を出力するよう改良。</p></li>
|
388
652
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>][TokenDelimit] トークンの区切り文字のカスタマイズをサポートしました。</p>
|
@@ -441,8 +705,8 @@
|
|
441
705
|
</li>
|
442
706
|
</ul>
|
443
707
|
</div>
|
444
|
-
<div class="section" id="
|
445
|
-
<h3>修正<a class="headerlink" href="#
|
708
|
+
<div class="section" id="id22">
|
709
|
+
<h3>修正<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
446
710
|
<ul>
|
447
711
|
<li><p>ウインドウ関数を評価する際にメモリリークする問題を修正しました。</p></li>
|
448
712
|
<li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] ログの内容が混在することがあるバグを修正しました。</p></li>
|
@@ -458,8 +722,8 @@
|
|
458
722
|
<li><p>deleteコマンドで削除したベクターカラムの値がヒットするバグを修正しました。[dodaisukeさんの報告]</p></li>
|
459
723
|
</ul>
|
460
724
|
</div>
|
461
|
-
<div class="section" id="
|
462
|
-
<h3>感謝<a class="headerlink" href="#
|
725
|
+
<div class="section" id="id23">
|
726
|
+
<h3>感謝<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
463
727
|
<ul class="simple">
|
464
728
|
<li><p>dodaisukeさん</p></li>
|
465
729
|
</ul>
|
@@ -467,8 +731,8 @@
|
|
467
731
|
</div>
|
468
732
|
<div class="section" id="release-8-0-8-2018-10-29">
|
469
733
|
<span id="release-8-0-8"></span><h2>8.0.8リリース - 2018-10-29<a class="headerlink" href="#release-8-0-8-2018-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
470
|
-
<div class="section" id="
|
471
|
-
<h3>改良<a class="headerlink" href="#
|
734
|
+
<div class="section" id="id24">
|
735
|
+
<h3>改良<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
472
736
|
<ul>
|
473
737
|
<li><p>[<a class="reference internal" href="reference/commands/table_list.html"><span class="doc">table_list</span></a>] デフォルトトークナイザーのオプションをサポートしました。</p>
|
474
738
|
<ul class="simple">
|
@@ -515,8 +779,8 @@
|
|
515
779
|
<li><p>Ubuntu 18.10 (Cosmic Cuttlefish)をサポートしました。</p></li>
|
516
780
|
</ul>
|
517
781
|
</div>
|
518
|
-
<div class="section" id="
|
519
|
-
<h3>修正<a class="headerlink" href="#
|
782
|
+
<div class="section" id="id25">
|
783
|
+
<h3>修正<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
520
784
|
<ul class="simple">
|
521
785
|
<li><p>Groonga GQTP サーバーが新しい接続を受け付けなくなることがあるバグを修正しました。[groonga-dev,04688][Yutaro Shimamuraさんの報告]</p>
|
522
786
|
<ul>
|
@@ -525,8 +789,8 @@
|
|
525
789
|
</li>
|
526
790
|
</ul>
|
527
791
|
</div>
|
528
|
-
<div class="section" id="
|
529
|
-
<h3>感謝<a class="headerlink" href="#
|
792
|
+
<div class="section" id="id26">
|
793
|
+
<h3>感謝<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
530
794
|
<ul class="simple">
|
531
795
|
<li><p>Masatoshi SEKIさん</p></li>
|
532
796
|
<li><p>Yutaro Shimamuraさん</p></li>
|
@@ -535,8 +799,8 @@
|
|
535
799
|
</div>
|
536
800
|
<div class="section" id="release-8-0-7-2018-09-29">
|
537
801
|
<span id="release-8-0-7"></span><h2>8.0.7リリース - 2018-09-29<a class="headerlink" href="#release-8-0-7-2018-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
538
|
-
<div class="section" id="
|
539
|
-
<h3>改良<a class="headerlink" href="#
|
802
|
+
<div class="section" id="id27">
|
803
|
+
<h3>改良<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
540
804
|
<ul>
|
541
805
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>][TokenMecab] Mecabのメタデータの出力をサポートしました。</p>
|
542
806
|
<ul>
|
@@ -571,8 +835,8 @@
|
|
571
835
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.15.4に更新しました。</p></li>
|
572
836
|
</ul>
|
573
837
|
</div>
|
574
|
-
<div class="section" id="
|
575
|
-
<h3>修正<a class="headerlink" href="#
|
838
|
+
<div class="section" id="id28">
|
839
|
+
<h3>修正<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
576
840
|
<ul class="simple">
|
577
841
|
<li><p>いくつかのケースでの誤ったスコア計算を修正しました。</p>
|
578
842
|
<ul>
|
@@ -585,8 +849,8 @@
|
|
585
849
|
</div>
|
586
850
|
<div class="section" id="release-8-0-6-2018-08-29">
|
587
851
|
<span id="release-8-0-6"></span><h2>8.0.6リリース - 2018-08-29<a class="headerlink" href="#release-8-0-6-2018-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
588
|
-
<div class="section" id="
|
589
|
-
<h3>改良<a class="headerlink" href="#
|
852
|
+
<div class="section" id="id29">
|
853
|
+
<h3>改良<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
590
854
|
<ul>
|
591
855
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>][TokenMecab] <code class="docutils literal notranslate"><span class="pre">chunked_tokenize</span></code> と <code class="docutils literal notranslate"><span class="pre">chunk_size_threshold</span></code> の両オプションに対応しました。</p></li>
|
592
856
|
<li><p>[optimizer] query family expressionの推定に対応しました。<code class="docutils literal notranslate"><span class="pre">column</span> <span class="pre">@</span> <span class="pre">query</span></code> や <code class="docutils literal notranslate"><span class="pre">column</span> <span class="pre">@~</span> <span class="pre">pattern</span></code> のようなquery family expressionについて、より効果的な実行計画を立てられます。</p></li>
|
@@ -601,8 +865,8 @@
|
|
601
865
|
<li><p>[vector_find] サポートされていないモードでクラッシュしないようにしました。</p></li>
|
602
866
|
</ul>
|
603
867
|
</div>
|
604
|
-
<div class="section" id="
|
605
|
-
<h3>修正<a class="headerlink" href="#
|
868
|
+
<div class="section" id="id30">
|
869
|
+
<h3>修正<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
606
870
|
<ul class="simple">
|
607
871
|
<li><p>[index] <code class="docutils literal notranslate"><span class="pre">HASH_KEY</span></code> を伴ったテキストのベクターに対するオフラインでのインデックス構築に関して、誤ったセクションIDを持つインデックスが構築されてしまうバグを修正しました。</p></li>
|
608
872
|
<li><p><code class="docutils literal notranslate"><span class="pre">--match_columns</span> <span class="pre">'index[0]</span> <span class="pre">||</span> <span class="pre">index[9]'</span></code> が誤ったセクションを使用してしまう問題を修正しました。</p></li>
|
@@ -616,8 +880,8 @@
|
|
616
880
|
</div>
|
617
881
|
<div class="section" id="release-8-0-5-2018-07-29">
|
618
882
|
<span id="release-8-0-5"></span><h2>8.0.5リリース - 2018-07-29<a class="headerlink" href="#release-8-0-5-2018-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
619
|
-
<div class="section" id="
|
620
|
-
<h3>改良<a class="headerlink" href="#
|
883
|
+
<div class="section" id="id31">
|
884
|
+
<h3>改良<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
621
885
|
<ul class="simple">
|
622
886
|
<li><p>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">スクリプト構文</span></a>] 類似文書検索の補足説明とその日本語訳を追加しました。 [GitHub groonga/GitHub#858] [堀本さんがパッチ提供]</p></li>
|
623
887
|
<li><p>[<a class="reference internal" href="reference/functions/time_classify_day_of_week.html"><span class="doc">time_classify_day_of_week</span></a>] 新しい関数 <code class="docutils literal notranslate"><span class="pre">time_classify_day_of_week()</span></code> を追加しました。</p></li>
|
@@ -631,8 +895,8 @@
|
|
631
895
|
<li><p>[<a class="reference internal" href="install/debian.html"><span class="doc">Debian GNU/Linux</span></a>] jessieのサポートをやめました。Debianのセキュリティ&リリースチームはもはやjessieの更新を提供しません。</p></li>
|
632
896
|
</ul>
|
633
897
|
</div>
|
634
|
-
<div class="section" id="
|
635
|
-
<h3>修正<a class="headerlink" href="#
|
898
|
+
<div class="section" id="id32">
|
899
|
+
<h3>修正<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
636
900
|
<ul class="simple">
|
637
901
|
<li><p>POSTでの <code class="docutils literal notranslate"><span class="pre">/d/load</span></code> へのデータ送信が中断された後に誤った結果が返されていたのを修正しました。</p></li>
|
638
902
|
<li><p>KyTeaに関する間違った関数呼び出しを修正しました。</p></li>
|
@@ -644,8 +908,8 @@
|
|
644
908
|
</div>
|
645
909
|
<div class="section" id="release-8-0-4-2018-06-29">
|
646
910
|
<span id="release-8-0-4"></span><h2>8.0.4リリース - 2018-06-29<a class="headerlink" href="#release-8-0-4-2018-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
647
|
-
<div class="section" id="
|
648
|
-
<h3>改良<a class="headerlink" href="#
|
911
|
+
<div class="section" id="id33">
|
912
|
+
<h3>改良<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
649
913
|
<ul class="simple">
|
650
914
|
<li><p>[log] <code class="docutils literal notranslate"><span class="pre">[ii][update][one]</span></code> のエラーメッセージにサブエラーを追加しました。</p></li>
|
651
915
|
<li><p>新しいAPI <code class="docutils literal notranslate"><span class="pre">grn_highlighter_clear_keywords()</span></code> を追加しました。</p></li>
|
@@ -679,8 +943,8 @@
|
|
679
943
|
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 実装が不十分だったため、ログのチェックを一時的に無効にしました</p></li>
|
680
944
|
</ul>
|
681
945
|
</div>
|
682
|
-
<div class="section" id="
|
683
|
-
<h3>修正<a class="headerlink" href="#
|
946
|
+
<div class="section" id="id34">
|
947
|
+
<h3>修正<a class="headerlink" href="#id34" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
684
948
|
<ul class="simple">
|
685
949
|
<li><p>[<a class="reference internal" href="reference/functions/sub_filter.html"><span class="doc">sub_filter</span></a>] 十分にフィルターされたケースで、スコアが多すぎる問題を修正</p></li>
|
686
950
|
<li><p>KyTeaがインストールされているとビルドに失敗する問題を修正しました。</p></li>
|
@@ -694,8 +958,8 @@
|
|
694
958
|
</div>
|
695
959
|
<div class="section" id="release-8-0-3-2018-05-29">
|
696
960
|
<span id="release-8-0-3"></span><h2>8.0.3リリース - 2018-05-29<a class="headerlink" href="#release-8-0-3-2018-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
697
|
-
<div class="section" id="
|
698
|
-
<h3>改良<a class="headerlink" href="#
|
961
|
+
<div class="section" id="id35">
|
962
|
+
<h3>改良<a class="headerlink" href="#id35" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
699
963
|
<ul>
|
700
964
|
<li><p>[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> または <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> を使って検索した結果のハイライトをサポートしました。</p></li>
|
701
965
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> に新しいオプション <code class="docutils literal notranslate"><span class="pre">report_source_location</span> <span class="pre">option</span></code> を追加しました。このオプションは、<code class="docutils literal notranslate"><span class="pre">highlight_html</span></code> で語彙表を使ったハイライトをする時に使用します。</p></li>
|
@@ -715,8 +979,8 @@
|
|
715
979
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.14.0に更新しました。</p></li>
|
716
980
|
</ul>
|
717
981
|
</div>
|
718
|
-
<div class="section" id="
|
719
|
-
<h3>修正<a class="headerlink" href="#
|
982
|
+
<div class="section" id="id36">
|
983
|
+
<h3>修正<a class="headerlink" href="#id36" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
720
984
|
<ul class="simple">
|
721
985
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] 動的カラムをフィルターした時にエラーが発生するとメモリリークする不具合を修正しました。</p></li>
|
722
986
|
<li><p>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] 動的カラムの初期化に失敗した際にメモリリークする不具合を修正しました。</p></li>
|
@@ -728,8 +992,8 @@
|
|
728
992
|
</div>
|
729
993
|
<div class="section" id="release-8-0-2-2018-04-29">
|
730
994
|
<span id="release-8-0-2"></span><h2>8.0.2リリース - 2018-04-29<a class="headerlink" href="#release-8-0-2-2018-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
731
|
-
<div class="section" id="
|
732
|
-
<h3>改良<a class="headerlink" href="#
|
995
|
+
<div class="section" id="id37">
|
996
|
+
<h3>改良<a class="headerlink" href="#id37" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
733
997
|
<ul>
|
734
998
|
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>][<a class="reference internal" href="reference/executables/grndb.html#grndb-force-truncate"><span class="std std-ref">--force-truncate</span></a>] <code class="docutils literal notranslate"><span class="pre">grndb</span> <span class="pre">recover</span> <span class="pre">--force-truncate</span></code> オプションを指定することで、テーブルにロックが残ったままの状態でも truncate できるようにしました。</p></li>
|
735
999
|
<li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] <code class="docutils literal notranslate"><span class="pre">sort_keys</span></code> オプションに対応しました。</p></li>
|
@@ -762,16 +1026,16 @@
|
|
762
1026
|
<li><p>Ubuntu 18.04 (Bionic Beaver)をサポートしました。</p></li>
|
763
1027
|
</ul>
|
764
1028
|
</div>
|
765
|
-
<div class="section" id="
|
766
|
-
<h3>修正<a class="headerlink" href="#
|
1029
|
+
<div class="section" id="id38">
|
1030
|
+
<h3>修正<a class="headerlink" href="#id38" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
767
1031
|
<ul class="simple">
|
768
1032
|
<li><p>スペースのみの検索クエリが意図しないレコードにマッチする不具合を修正しました。[groonga-dev,04609][satouyuzhさんの報告]</p></li>
|
769
1033
|
<li><p>誤ったスコアラーが使われる場合があった不具合を修正しました。この問題は以下のように複数のスコアラーが使われた時に発生していました: <code class="docutils literal notranslate"><span class="pre">--match_columns</span> <span class="pre">'title</span> <span class="pre">||</span> <span class="pre">scorer_tf_at_most(content,</span> <span class="pre">2.0)'</span></code></p></li>
|
770
1034
|
<li><p>「thread_limit」の変更に時間がかかりすぎる問題を修正しました。</p></li>
|
771
1035
|
</ul>
|
772
1036
|
</div>
|
773
|
-
<div class="section" id="
|
774
|
-
<h3>感謝<a class="headerlink" href="#
|
1037
|
+
<div class="section" id="id39">
|
1038
|
+
<h3>感謝<a class="headerlink" href="#id39" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
775
1039
|
<ul class="simple">
|
776
1040
|
<li><p>satouyuzhさん</p></li>
|
777
1041
|
</ul>
|
@@ -779,8 +1043,8 @@
|
|
779
1043
|
</div>
|
780
1044
|
<div class="section" id="release-8-0-1-2018-03-29">
|
781
1045
|
<span id="release-8-0-1"></span><h2>8.0.1リリース - 2018-03-29<a class="headerlink" href="#release-8-0-1-2018-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
782
|
-
<div class="section" id="
|
783
|
-
<h3>改良<a class="headerlink" href="#
|
1046
|
+
<div class="section" id="id40">
|
1047
|
+
<h3>改良<a class="headerlink" href="#id40" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
784
1048
|
<ul>
|
785
1049
|
<li><p>[<a class="reference internal" href="reference/log.html"><span class="doc">ログ</span></a>] クエリーログ内で <code class="docutils literal notranslate"><span class="pre">filter</span></code> 条件を表示するようにしました。この機能はデフォルトでは、無効になっています。有効にするためには、環境変数 <code class="docutils literal notranslate"><span class="pre">GRN_QUERY_LOG_SHOW_CONDITION=yes</span></code> を設定します。</p></li>
|
786
1050
|
<li><p><code class="docutils literal notranslate"><span class="pre">*.pdb</span></code> を <code class="docutils literal notranslate"><span class="pre">*.dll</span></code> と <code class="docutils literal notranslate"><span class="pre">*.exe</span></code> と同じディレクトリにインストールされるようにしました。</p></li>
|
@@ -799,8 +1063,8 @@
|
|
799
1063
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.10に更新しました。</p></li>
|
800
1064
|
</ul>
|
801
1065
|
</div>
|
802
|
-
<div class="section" id="
|
803
|
-
<h3>修正<a class="headerlink" href="#
|
1066
|
+
<div class="section" id="id41">
|
1067
|
+
<h3>修正<a class="headerlink" href="#id41" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
804
1068
|
<ul class="simple">
|
805
1069
|
<li><p>共通接頭辞がどのトークンにもマッチしない時にメモリリークする問題を修正しました。[GitHub#820] [村上さんがパッチ提供]</p></li>
|
806
1070
|
<li><p>同一プロセスで複数のデータベースを開いている時に、異なるデータベースのキャッシュを使用してしまう問題を修正しました。</p></li>
|
@@ -808,8 +1072,8 @@
|
|
808
1072
|
<li><p>比較時(>,>=,<,<=,==,!=)に定数がオーバーフローまたは、アンダーフローし得る問題を修正しました。</p></li>
|
809
1073
|
</ul>
|
810
1074
|
</div>
|
811
|
-
<div class="section" id="
|
812
|
-
<h3>感謝<a class="headerlink" href="#
|
1075
|
+
<div class="section" id="id42">
|
1076
|
+
<h3>感謝<a class="headerlink" href="#id42" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
813
1077
|
<ul class="simple">
|
814
1078
|
<li><p>村上さん</p></li>
|
815
1079
|
</ul>
|
@@ -818,8 +1082,8 @@
|
|
818
1082
|
<div class="section" id="release-8-0-0-2018-02-09">
|
819
1083
|
<span id="release-8-0-0"></span><h2>8.0.0リリース - 2018-02-09<a class="headerlink" href="#release-8-0-0-2018-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
820
1084
|
<p>メジャーバージョンアップです! メジャーバージョンアップですが、互換性は壊れていないので、データベースを再構築することなくアップグレードできます。</p>
|
821
|
-
<div class="section" id="
|
822
|
-
<h3>改良<a class="headerlink" href="#
|
1085
|
+
<div class="section" id="id43">
|
1086
|
+
<h3>改良<a class="headerlink" href="#id43" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
823
1087
|
<ul>
|
824
1088
|
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] <code class="docutils literal notranslate"><span class="pre">--drilldown_adjuster</span></code> と <code class="docutils literal notranslate"><span class="pre">drilldowns[LABEL].adjuster</span></code> を追加しました。drilldown結果に対して、スコア調整できるようになります。</p></li>
|
825
1089
|
<li><p>[<a class="reference internal" href="reference/indexing.html#online-index-construction"><span class="std std-ref">動的なインデックス構築方法</span></a>] 環境変数の名前を <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_ENABLE</span></code> から <code class="docutils literal notranslate"><span class="pre">GRN_II_REDUCE_EXPIRE_THRESHOLD</span></code> へ変更しました。</p>
|
@@ -828,8 +1092,8 @@
|
|
828
1092
|
<li><p>[<a class="reference internal" href="reference/functions/between.html"><span class="doc">between</span></a>] 境界値なしの <code class="docutils literal notranslate"><span class="pre">between()</span></code> を受け付けるようにしました。<code class="docutils literal notranslate"><span class="pre">between()</span></code> の引数の数が3つでも実行できます。2番目と3番目の引数が境界を含むものとして処理されます。</p></li>
|
829
1093
|
</ul>
|
830
1094
|
</div>
|
831
|
-
<div class="section" id="
|
832
|
-
<h3>修正<a class="headerlink" href="#
|
1095
|
+
<div class="section" id="id44">
|
1096
|
+
<h3>修正<a class="headerlink" href="#id44" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
833
1097
|
<ul class="simple">
|
834
1098
|
<li><p>ハッシュテーブルのメモリリークを修正しました。 [GitHub:mroonga/mroonga#190][fuku1さんの報告]</p></li>
|
835
1099
|
<li><p>配列のメモリリークを修正しました。</p></li>
|
@@ -837,8 +1101,8 @@
|
|
837
1101
|
<li><p>[Windows] <code class="docutils literal notranslate"><span class="pre">WSASend</span></code> が適切なエラーコードを返すようにしました。</p></li>
|
838
1102
|
</ul>
|
839
1103
|
</div>
|
840
|
-
<div class="section" id="
|
841
|
-
<h3>感謝<a class="headerlink" href="#
|
1104
|
+
<div class="section" id="id45">
|
1105
|
+
<h3>感謝<a class="headerlink" href="#id45" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
842
1106
|
<ul class="simple">
|
843
1107
|
<li><p>fuku1さん</p></li>
|
844
1108
|
</ul>
|
@@ -846,8 +1110,8 @@
|
|
846
1110
|
</div>
|
847
1111
|
<div class="section" id="release-7-1-1-2018-01-29">
|
848
1112
|
<span id="release-7-1-1"></span><h2>7.1.1リリース - 2018-01-29<a class="headerlink" href="#release-7-1-1-2018-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
849
|
-
<div class="section" id="
|
850
|
-
<h3>改良<a class="headerlink" href="#
|
1113
|
+
<div class="section" id="id46">
|
1114
|
+
<h3>改良<a class="headerlink" href="#id46" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
851
1115
|
<ul>
|
852
1116
|
<li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Ubuntu 17.04(Zesty Zapus)のサポートをやめました。2018年1月13日でサポートが切れた(EOLになった)ためです。</p></li>
|
853
1117
|
<li><p>Quorum matchをサポートしました。スクリプト構文でもクエリー構文でもquorum matchを使うことができます。</p>
|
@@ -867,15 +1131,15 @@
|
|
867
1131
|
<li><p>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] [<a class="reference internal" href="reference/commands/logical_range_filter.html#logical-range-filter-post-filter"><span class="std std-ref">post_filter</span></a>]フィルタータイミングを新規追加しました。 <code class="docutils literal notranslate"><span class="pre">filtered</span></code> ステージで生成されるカラムが生成された後に実行されます。</p></li>
|
868
1132
|
</ul>
|
869
1133
|
</div>
|
870
|
-
<div class="section" id="
|
871
|
-
<h3>修正<a class="headerlink" href="#
|
1134
|
+
<div class="section" id="id47">
|
1135
|
+
<h3>修正<a class="headerlink" href="#id47" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
872
1136
|
<ul class="simple">
|
873
1137
|
<li><p>参照ベクタのインデックスを作成する際に使用するリソースを削減しました。[GitHub#806][村上さんが報告]</p></li>
|
874
1138
|
<li><p>[<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>] <code class="docutils literal notranslate"><span class="pre">token_filters</span></code> が無効であってもテーブルが作成される不具合を修正しました。</p></li>
|
875
1139
|
</ul>
|
876
1140
|
</div>
|
877
|
-
<div class="section" id="
|
878
|
-
<h3>感謝<a class="headerlink" href="#
|
1141
|
+
<div class="section" id="id48">
|
1142
|
+
<h3>感謝<a class="headerlink" href="#id48" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
879
1143
|
<ul class="simple">
|
880
1144
|
<li><p>付超群さん</p></li>
|
881
1145
|
<li><p>村上さん</p></li>
|
@@ -884,8 +1148,8 @@
|
|
884
1148
|
</div>
|
885
1149
|
<div class="section" id="release-7-1-0-2017-12-29">
|
886
1150
|
<span id="release-7-1-0"></span><h2>7.1.0リリース - 2017-12-29<a class="headerlink" href="#release-7-1-0-2017-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
887
|
-
<div class="section" id="
|
888
|
-
<h3>改良<a class="headerlink" href="#
|
1151
|
+
<div class="section" id="id49">
|
1152
|
+
<h3>改良<a class="headerlink" href="#id49" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
889
1153
|
<ul>
|
890
1154
|
<li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] <code class="docutils literal notranslate"><span class="pre">load</span></code> コマンドのクエリーログのフォーマットを改良しました。<code class="docutils literal notranslate"><span class="pre">load</span></code> コマンドのクエリーログに以下の項目が追加されます。</p>
|
891
1155
|
<blockquote>
|
@@ -939,8 +1203,8 @@
|
|
939
1203
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.8に更新しました。</p></li>
|
940
1204
|
</ul>
|
941
1205
|
</div>
|
942
|
-
<div class="section" id="
|
943
|
-
<h3>修正<a class="headerlink" href="#
|
1206
|
+
<div class="section" id="id50">
|
1207
|
+
<h3>修正<a class="headerlink" href="#id50" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
944
1208
|
<ul>
|
945
1209
|
<li><p><code class="docutils literal notranslate"><span class="pre">highlight_full</span></code> 関数を使用するとメモリリークする問題を修正しました。</p></li>
|
946
1210
|
<li><p>Mroongaで以下ような呼び出しを行った際にクラッシュする問題を修正しました。</p>
|
@@ -953,8 +1217,8 @@
|
|
953
1217
|
</li>
|
954
1218
|
</ul>
|
955
1219
|
</div>
|
956
|
-
<div class="section" id="
|
957
|
-
<h3>感謝<a class="headerlink" href="#
|
1220
|
+
<div class="section" id="id51">
|
1221
|
+
<h3>感謝<a class="headerlink" href="#id51" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
958
1222
|
<ul class="simple">
|
959
1223
|
<li><p>takagi01</p></li>
|
960
1224
|
<li><p>村上さん</p></li>
|
@@ -963,8 +1227,8 @@
|
|
963
1227
|
</div>
|
964
1228
|
<div class="section" id="release-7-0-9-2017-11-29">
|
965
1229
|
<span id="release-7-0-9"></span><h2>7.0.9リリース - 2017-11-29<a class="headerlink" href="#release-7-0-9-2017-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
966
|
-
<div class="section" id="
|
967
|
-
<h3>改良<a class="headerlink" href="#
|
1230
|
+
<div class="section" id="id52">
|
1231
|
+
<h3>改良<a class="headerlink" href="#id52" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
968
1232
|
<ul class="simple">
|
969
1233
|
<li><p>Apache Arrowの新しいバージョンをサポートしました。このリリースでは、Apache Arrowサポートを有効にするには0.8.0以降が必要です。</p></li>
|
970
1234
|
<li><p>[sharding] 動的カラムの新しいAPIを追加しました。</p>
|
@@ -982,8 +1246,8 @@
|
|
982
1246
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.7に更新しました。</p></li>
|
983
1247
|
</ul>
|
984
1248
|
</div>
|
985
|
-
<div class="section" id="
|
986
|
-
<h3>修正<a class="headerlink" href="#
|
1249
|
+
<div class="section" id="id53">
|
1250
|
+
<h3>修正<a class="headerlink" href="#id53" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
987
1251
|
<ul class="simple">
|
988
1252
|
<li><p>[httpd] 古いバージョンのGroongaがすでにインストールされている場合にそちらを参照してしまい、ビルドエラーになる問題を修正しました。 [GitHub#775] [myamanishi3さんが報告]</p></li>
|
989
1253
|
<li><p>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] <code class="docutils literal notranslate"><span class="pre">in_values</span></code> に多すぎる引数を指定するとクラッシュする不具合を修正しました。この不具合は126を超える引数をサポートする過程で見つかりました。 [GitHub#780]</p></li>
|
@@ -991,8 +1255,8 @@
|
|
991
1255
|
<li><p>[<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">静的なインデックス構築方法</span></a>] ベクターカラムの静的索引構築時に必要以上のリソースを使用する問題を修正しました。1つのベクターカラムの要素数が多く、大量のレコードがある場合はGroongaがクラッシュしていました。 [groonga-dev,04533][内山敏郎さんが報告]</p></li>
|
992
1256
|
</ul>
|
993
1257
|
</div>
|
994
|
-
<div class="section" id="
|
995
|
-
<h3>感謝<a class="headerlink" href="#
|
1258
|
+
<div class="section" id="id54">
|
1259
|
+
<h3>感謝<a class="headerlink" href="#id54" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
996
1260
|
<ul class="simple">
|
997
1261
|
<li><p>むらたさん</p></li>
|
998
1262
|
<li><p>myamanishi3さん</p></li>
|
@@ -1003,8 +1267,8 @@
|
|
1003
1267
|
</div>
|
1004
1268
|
<div class="section" id="release-7-0-8-2017-10-29">
|
1005
1269
|
<span id="release-7-0-8"></span><h2>7.0.8リリース - 2017-10-29<a class="headerlink" href="#release-7-0-8-2017-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1006
|
-
<div class="section" id="
|
1007
|
-
<h3>改良<a class="headerlink" href="#
|
1270
|
+
<div class="section" id="id55">
|
1271
|
+
<h3>改良<a class="headerlink" href="#id55" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1008
1272
|
<ul class="simple">
|
1009
1273
|
<li><p>[windows] クラッシュした際にバックトレースを出せるようにしました。関数呼び出しだけでなく、ソースコードの該当行も可能な限り表示します。バックトレースのサポートにより、問題の素早い解決につながります。</p></li>
|
1010
1274
|
<li><p><code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code> を指定してあれば "( )" を <code class="docutils literal notranslate"><span class="pre">--query</span></code> に指定して実行できるようにしました。 以前のバージョンでは、エラーになっていました。 [GitHub#767]</p></li>
|
@@ -1014,8 +1278,8 @@
|
|
1014
1278
|
<li><p>Ubuntu 17.10 Artful Aardvarkをサポート。</p></li>
|
1015
1279
|
</ul>
|
1016
1280
|
</div>
|
1017
|
-
<div class="section" id="
|
1018
|
-
<h3>修正<a class="headerlink" href="#
|
1281
|
+
<div class="section" id="id56">
|
1282
|
+
<h3>修正<a class="headerlink" href="#id56" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1019
1283
|
<ul class="simple">
|
1020
1284
|
<li><p>[dat] データベースを拡張する際、意図せず大きなファイルが(ワーストケースで)作成されてしまうことのある不具合を修正しました。この不具合はインデックスカラムを頻繁に作成/削除を繰り返したときに発生する可能性があります。7.0.7ではこの不具合に関連して"大量にキーを削除したケースで <code class="docutils literal notranslate"><span class="pre">table_create</span></code> に失敗する"問題を修正しましたが、その修正が不十分なケースに対応しました。</p></li>
|
1021
1285
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] <code class="docutils literal notranslate"><span class="pre">offset</span></code> と <code class="docutils literal notranslate"><span class="pre">limit</span></code> が複数のシャードに対して適用されたとき、実際よりも少ないレコードが返される不具合を修正しました。</p></li>
|
@@ -1024,8 +1288,8 @@
|
|
1024
1288
|
</div>
|
1025
1289
|
<div class="section" id="release-7-0-7-2017-09-29">
|
1026
1290
|
<span id="release-7-0-7"></span><h2>7.0.7リリース - 2017-09-29<a class="headerlink" href="#release-7-0-7-2017-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1027
|
-
<div class="section" id="
|
1028
|
-
<h3>改良<a class="headerlink" href="#
|
1291
|
+
<div class="section" id="id57">
|
1292
|
+
<h3>改良<a class="headerlink" href="#id57" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1029
1293
|
<ul>
|
1030
1294
|
<li><p><code class="docutils literal notranslate"><span class="pre">QUERY_NO_SYNTAX_ERROR</span></code> を <code class="docutils literal notranslate"><span class="pre">+</span></code> のみのクエリーに指定したときにも動作するようにしました。以前のバージョンではそのようなクエリーはエラーになっていました。</p></li>
|
1031
1295
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.5に更新しました。</p></li>
|
@@ -1040,8 +1304,8 @@
|
|
1040
1304
|
</li>
|
1041
1305
|
</ul>
|
1042
1306
|
</div>
|
1043
|
-
<div class="section" id="
|
1044
|
-
<h3>修正<a class="headerlink" href="#
|
1307
|
+
<div class="section" id="id58">
|
1308
|
+
<h3>修正<a class="headerlink" href="#id58" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1045
1309
|
<ul>
|
1046
1310
|
<li><p>[windows] <code class="docutils literal notranslate"><span class="pre">database_unmap</span></code> が実行される前のファイルハンドルのエラー処理を適切に行うようにしました。<code class="docutils literal notranslate"><span class="pre">database_unmap</span></code> 実行前にリクエストがキャンセルされた場合、排他制御部分が未初期化となる場合がありました。その場合、クラッシュしていました。</p></li>
|
1047
1311
|
<li><p>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">トークナイザー</span></a>] トークナイザー名のドキュメントを修正しました。<code class="docutils literal notranslate"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code> や <code class="docutils literal notranslate"><span class="pre">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code> であるべきでした。</p></li>
|
@@ -1063,8 +1327,8 @@
|
|
1063
1327
|
</div>
|
1064
1328
|
<div class="section" id="release-7-0-6-2017-08-29">
|
1065
1329
|
<span id="release-7-0-6"></span><h2>7.0.6リリース - 2017-08-29<a class="headerlink" href="#release-7-0-6-2017-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1066
|
-
<div class="section" id="
|
1067
|
-
<h3>改良<a class="headerlink" href="#
|
1330
|
+
<div class="section" id="id59">
|
1331
|
+
<h3>改良<a class="headerlink" href="#id59" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1068
1332
|
<ul class="simple">
|
1069
1333
|
<li><p>前方一致検索を複数インデックスを指定してできるようになりました。 (例 <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">"Foo*"</span> <span class="pre">--match_columns</span> <span class="pre">"TITLE_INDEX_COLUMN||BODY_INDEX_COLUMN"</span></code>)</p></li>
|
1070
1334
|
<li><p>[<a class="reference internal" href="reference/window_functions/window_count.html"><span class="doc">window_count</span></a>] <code class="docutils literal notranslate"><span class="pre">window_count</span></code> 関数を追加しました。検索した結果にカウントした値を追加するのに使います。検索結果をもとに分析したり、カウント結果をもとにフィルタしたりすると便利です。</p></li>
|
@@ -1083,16 +1347,16 @@
|
|
1083
1347
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.4に更新しました。</p></li>
|
1084
1348
|
</ul>
|
1085
1349
|
</div>
|
1086
|
-
<div class="section" id="
|
1087
|
-
<h3>修正<a class="headerlink" href="#
|
1350
|
+
<div class="section" id="id60">
|
1351
|
+
<h3>修正<a class="headerlink" href="#id60" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1088
1352
|
<ul class="simple">
|
1089
1353
|
<li><p>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] 7番目の引数 ( <code class="docutils literal notranslate"><span class="pre">--sort_hash_table</span></code> )が名前無しだと無視される不具合を修正しました。</p></li>
|
1090
1354
|
<li><p>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] コマンドラインパラメータの誤りを修正しました。<cite>source</cite> であるべきところが <cite>sources</cite> になっていました。[groonga-dev,04449] [むらたさんが報告]</p></li>
|
1091
1355
|
<li><p>[<a class="reference internal" href="reference/commands/ruby_eval.html"><span class="doc">ruby_eval</span></a>] ruby_evalコマンドがシンタックスエラーのときにクラッシュする問題を修正しました。 [GitHub#751] [ryo-pinusさんがパッチ提供]</p></li>
|
1092
1356
|
</ul>
|
1093
1357
|
</div>
|
1094
|
-
<div class="section" id="
|
1095
|
-
<h3>感謝<a class="headerlink" href="#
|
1358
|
+
<div class="section" id="id61">
|
1359
|
+
<h3>感謝<a class="headerlink" href="#id61" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1096
1360
|
<ul class="simple">
|
1097
1361
|
<li><p>murata satoshi</p></li>
|
1098
1362
|
<li><p>ryo-pinus</p></li>
|
@@ -1101,8 +1365,8 @@
|
|
1101
1365
|
</div>
|
1102
1366
|
<div class="section" id="release-7-0-5-2017-07-29">
|
1103
1367
|
<span id="release-7-0-5"></span><h2>7.0.5リリース - 2017-07-29<a class="headerlink" href="#release-7-0-5-2017-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1104
|
-
<div class="section" id="
|
1105
|
-
<h3>改良<a class="headerlink" href="#
|
1368
|
+
<div class="section" id="id62">
|
1369
|
+
<h3>改良<a class="headerlink" href="#id62" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1106
1370
|
<ul class="simple">
|
1107
1371
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.13.3に更新しました。セキュリティーに関する修正(CVE-2017-7529)を含んでいます。</p></li>
|
1108
1372
|
<li><p>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] UInt64の最大値をロードできるようにしました。以前のバージョンでは意図せず0に変換されてしまっていました。</p></li>
|
@@ -1126,16 +1390,16 @@
|
|
1126
1390
|
<li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Ubuntu 16.10(Yakkety Yak)のサポートをやめました。2017年7月20日でサポートが切れた(EOLになった)ためです。</p></li>
|
1127
1391
|
</ul>
|
1128
1392
|
</div>
|
1129
|
-
<div class="section" id="
|
1130
|
-
<h3>修正<a class="headerlink" href="#
|
1393
|
+
<div class="section" id="id63">
|
1394
|
+
<h3>修正<a class="headerlink" href="#id63" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1131
1395
|
<ul class="simple">
|
1132
1396
|
<li><p>テキスト型( <code class="docutils literal notranslate"><span class="pre">ShortText</span></code> など)のベクターカラムに対するインデックスを正しく構築できるようにしました。この修正でインデックス更新後に全文検索でマッチしない問題が解決します。 [GitHub#494]</p></li>
|
1133
1397
|
<li><p>[<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] <code class="docutils literal notranslate"><span class="pre">thread_limit?max=1</span></code> というリクエストが同時にきたときにデッドロックが発生する問題を修正しました。</p></li>
|
1134
1398
|
<li><p>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] デフォルトのPIDのパスと再起動時に想定しているPIDのパスがあっていない問題を修正しました。そのせいで groonga-httpd の再起動に失敗していました。 [GitHub#743] [sozakiさんが報告]</p></li>
|
1135
1399
|
</ul>
|
1136
1400
|
</div>
|
1137
|
-
<div class="section" id="
|
1138
|
-
<h3>感謝<a class="headerlink" href="#
|
1401
|
+
<div class="section" id="id64">
|
1402
|
+
<h3>感謝<a class="headerlink" href="#id64" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1139
1403
|
<ul class="simple">
|
1140
1404
|
<li><p>村上さん</p></li>
|
1141
1405
|
</ul>
|
@@ -1143,8 +1407,8 @@
|
|
1143
1407
|
</div>
|
1144
1408
|
<div class="section" id="release-7-0-4-2017-06-29">
|
1145
1409
|
<span id="release-7-0-4"></span><h2>7.0.4リリース - 2017-06-29<a class="headerlink" href="#release-7-0-4-2017-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1146
|
-
<div class="section" id="
|
1147
|
-
<h3>改良<a class="headerlink" href="#
|
1410
|
+
<div class="section" id="id65">
|
1411
|
+
<h3>改良<a class="headerlink" href="#id65" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1148
1412
|
<ul class="simple">
|
1149
1413
|
<li><p>物理的なファイルの作成/削除のログを障害の切り分けのために記録するようにしました。 [GitHub#700,#701]</p></li>
|
1150
1414
|
<li><p>[<a class="reference internal" href="reference/functions/in_records.html"><span class="doc">in_records</span></a>] 固定長カラムの検索パフォーマンスを改善しました。速度が50%程度改善する可能性があります。</p></li>
|
@@ -1163,21 +1427,21 @@
|
|
1163
1427
|
<li><p>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] 参照先のない "inspect" オブジェクトの検出と削除をサポートしました。この状態はコマンド名が <code class="docutils literal notranslate"><span class="pre">inspect</span></code> から <code class="docutils literal notranslate"><span class="pre">object_inspect</span></code> に変更されたことによって発生していました。</p></li>
|
1164
1428
|
</ul>
|
1165
1429
|
</div>
|
1166
|
-
<div class="section" id="
|
1167
|
-
<h3>修正<a class="headerlink" href="#
|
1430
|
+
<div class="section" id="id66">
|
1431
|
+
<h3>修正<a class="headerlink" href="#id66" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1168
1432
|
<ul class="simple">
|
1169
1433
|
<li><p>[rpm][centos] カスタマイズ版のビルドで意図しないマクロ展開が発生する問題を修正しました。この不具合はGroongaをSRPMからビルドする際にspecファイルの <code class="docutils literal notranslate"><span class="pre">additional_configure_options</span></code> パラメータを使ってリビルドするときのみ発生していました。</p></li>
|
1170
1434
|
<li><p><code class="docutils literal notranslate"><span class="pre">grn_table_setoperation()</span></code> のNULLチェックを追加しました。インデックスが壊れている際に、クラッシュする可能性がありました。 [GitHub#699]</p></li>
|
1171
1435
|
</ul>
|
1172
1436
|
</div>
|
1173
|
-
<div class="section" id="
|
1174
|
-
<h3>感謝<a class="headerlink" href="#
|
1437
|
+
<div class="section" id="id67">
|
1438
|
+
<h3>感謝<a class="headerlink" href="#id67" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1175
1439
|
</div>
|
1176
1440
|
</div>
|
1177
1441
|
<div class="section" id="release-7-0-3-2017-05-29">
|
1178
1442
|
<span id="release-7-0-3"></span><h2>7.0.3リリース - 2017-05-29<a class="headerlink" href="#release-7-0-3-2017-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1179
|
-
<div class="section" id="
|
1180
|
-
<h3>改良<a class="headerlink" href="#
|
1443
|
+
<div class="section" id="id68">
|
1444
|
+
<h3>改良<a class="headerlink" href="#id68" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1181
1445
|
<ul class="simple">
|
1182
1446
|
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] <a class="reference internal" href="tutorial/match_columns.html#full-text-search-with-specific-index-name"><span class="std std-ref">インデックス名を指定した全文検索</span></a> のドキュメントを追加しました。</p></li>
|
1183
1447
|
<li><p>[インデックス] どのレコードに対するポスティングリストが長すぎるのかわかるように、警告メッセージをログに出すようにしました。</p></li>
|
@@ -1198,8 +1462,8 @@
|
|
1198
1462
|
</li>
|
1199
1463
|
</ul>
|
1200
1464
|
</div>
|
1201
|
-
<div class="section" id="
|
1202
|
-
<h3>修正<a class="headerlink" href="#
|
1465
|
+
<div class="section" id="id69">
|
1466
|
+
<h3>修正<a class="headerlink" href="#id69" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1203
1467
|
<ul class="simple">
|
1204
1468
|
<li><p>[<a class="reference internal" href="reference/commands/delete.html"><span class="doc">delete</span></a>] エラーが適切にクリアされていない不具合を修正しました。そのせいで、後続の削除処理に影響し意図しない振る舞いをしていました。</p></li>
|
1205
1469
|
<li><p>[windows] ファイルを <code class="docutils literal notranslate"><span class="pre">O_CREAT</span></code> フラグ付きで開くときに、IOのバージョンが正しく検出されない不具合を修正しました。</p></li>
|
@@ -1208,8 +1472,8 @@
|
|
1208
1472
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] <code class="docutils literal notranslate"><span class="pre">min</span></code> に月の最終日を指定すると "argument out of range" が発生する不具合を修正しました。</p></li>
|
1209
1473
|
</ul>
|
1210
1474
|
</div>
|
1211
|
-
<div class="section" id="
|
1212
|
-
<h3>感謝<a class="headerlink" href="#
|
1475
|
+
<div class="section" id="id70">
|
1476
|
+
<h3>感謝<a class="headerlink" href="#id70" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1213
1477
|
<ul class="simple">
|
1214
1478
|
<li><p>Sergei Golubchikさん</p></li>
|
1215
1479
|
<li><p>村上さん</p></li>
|
@@ -1218,8 +1482,8 @@
|
|
1218
1482
|
</div>
|
1219
1483
|
<div class="section" id="release-7-0-2-2017-04-29">
|
1220
1484
|
<span id="release-7-0-2"></span><h2>7.0.2リリース - 2017-04-29<a class="headerlink" href="#release-7-0-2-2017-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1221
|
-
<div class="section" id="
|
1222
|
-
<h3>改良<a class="headerlink" href="#
|
1485
|
+
<div class="section" id="id71">
|
1486
|
+
<h3>改良<a class="headerlink" href="#id71" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1223
1487
|
<ul class="simple">
|
1224
1488
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldowns-label-columns-name-window-sort-keys"><span class="std std-ref">drilldowns[${LABEL}].columns[${NAME}].window.sort_keys</span></a> と <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldowns-label-columns-name-window-group-keys"><span class="std std-ref">drilldowns[${LABEL}].columns[${NAME}].window.group_keys</span></a> で複数のキーを指定できるようになりました。</p></li>
|
1225
1489
|
<li><p>[Windows] バンドルしているLZ4を1.7.5に更新しました。</p></li>
|
@@ -1242,8 +1506,8 @@
|
|
1242
1506
|
<li><p>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] EOLのため、Ubuntu 12.04のサポートをやめました。</p></li>
|
1243
1507
|
</ul>
|
1244
1508
|
</div>
|
1245
|
-
<div class="section" id="
|
1246
|
-
<h3>修正<a class="headerlink" href="#
|
1509
|
+
<div class="section" id="id72">
|
1510
|
+
<h3>修正<a class="headerlink" href="#id72" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1247
1511
|
<ul class="simple">
|
1248
1512
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] 異なるキャッシュが使われてしまう不具合を修正しました。この問題は動的カラムを使っているときに発生していました。</p></li>
|
1249
1513
|
<li><p>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] 動的カラムが作成されない不具合を修正しました。レコードにマッチしない場合に発生していました。</p></li>
|
@@ -1254,8 +1518,8 @@
|
|
1254
1518
|
</div>
|
1255
1519
|
<div class="section" id="release-7-0-1-2017-03-29">
|
1256
1520
|
<span id="release-7-0-1"></span><h2>7.0.1リリース - 2017-03-29<a class="headerlink" href="#release-7-0-1-2017-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1257
|
-
<div class="section" id="
|
1258
|
-
<h3>改良<a class="headerlink" href="#
|
1521
|
+
<div class="section" id="id73">
|
1522
|
+
<h3>改良<a class="headerlink" href="#id73" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1259
1523
|
<ul class="simple">
|
1260
1524
|
<li><p>以下のAPIを公開しました。</p>
|
1261
1525
|
<ul>
|
@@ -1300,8 +1564,8 @@
|
|
1300
1564
|
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] <code class="docutils literal notranslate"><span class="pre">drilldown_filter</span></code> のドキュメントを追加しました。</p></li>
|
1301
1565
|
</ul>
|
1302
1566
|
</div>
|
1303
|
-
<div class="section" id="
|
1304
|
-
<h3>修正<a class="headerlink" href="#
|
1567
|
+
<div class="section" id="id74">
|
1568
|
+
<h3>修正<a class="headerlink" href="#id74" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1305
1569
|
<ul class="simple">
|
1306
1570
|
<li><p>[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] テンポラリデータベースに対して実行するとクラッシュする不具合を修正しました。</p></li>
|
1307
1571
|
<li><p>自然言語に対する動的インデックス更新でインデックスサイズが肥大化する問題を修正しました。Groonga 6.1.4から発生していました。</p></li>
|
@@ -1310,8 +1574,8 @@
|
|
1310
1574
|
<li><p>[<a class="reference internal" href="reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] 最大スレッド数が1のときにクラッシュする不具合を修正しました。</p></li>
|
1311
1575
|
</ul>
|
1312
1576
|
</div>
|
1313
|
-
<div class="section" id="
|
1314
|
-
<h3>感謝<a class="headerlink" href="#
|
1577
|
+
<div class="section" id="id75">
|
1578
|
+
<h3>感謝<a class="headerlink" href="#id75" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1315
1579
|
<ul class="simple">
|
1316
1580
|
<li><p>株式会社ぐるなびさん</p></li>
|
1317
1581
|
</ul>
|
@@ -1319,8 +1583,8 @@
|
|
1319
1583
|
</div>
|
1320
1584
|
<div class="section" id="release-7-0-0-2017-02-09">
|
1321
1585
|
<span id="release-7-0-0"></span><h2>7.0.0リリース - 2017-02-09<a class="headerlink" href="#release-7-0-0-2017-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1322
|
-
<div class="section" id="
|
1323
|
-
<h3>改良<a class="headerlink" href="#
|
1586
|
+
<div class="section" id="id76">
|
1587
|
+
<h3>改良<a class="headerlink" href="#id76" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1324
1588
|
<ul class="simple">
|
1325
1589
|
<li><p>[<a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a>] 参照型ベクターカラムのシーケンシャルサーチに対応しました。 [GitHub#629] [村上さんがパッチ提供]</p></li>
|
1326
1590
|
<li><p>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] 誤った <code class="docutils literal notranslate"><span class="pre">drilldown[LABEL].sort_keys</span></code> が指定されたとき、無視するのではなく、エラーを報告するようにしました。</p></li>
|
@@ -1341,8 +1605,8 @@
|
|
1341
1605
|
<li><p>[httpd] バンドルしているnginxのバージョンを1.11.9に更新しました。</p></li>
|
1342
1606
|
</ul>
|
1343
1607
|
</div>
|
1344
|
-
<div class="section" id="
|
1345
|
-
<h3>修正<a class="headerlink" href="#
|
1608
|
+
<div class="section" id="id77">
|
1609
|
+
<h3>修正<a class="headerlink" href="#id77" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1346
1610
|
<ul class="simple">
|
1347
1611
|
<li><p>存在しないソートキーを <code class="docutils literal notranslate"><span class="pre">drilldowns[LABEL]</span></code> や <code class="docutils literal notranslate"><span class="pre">slices[LABEL]</span></code> に指定するとJSONパースエラーとなる不具合を修正しました。 [GitHub#627] [村上さんがパッチ提供]</p></li>
|
1348
1612
|
<li><p>存在しないグループのサブレコードにアクセスしようとするとクラッシュする不具合を修正しました。例えば、 <code class="docutils literal notranslate"><span class="pre">drilldowns[LABEL].sort_keys</span> <span class="pre">_sum</span></code> を <code class="docutils literal notranslate"><span class="pre">calc_types</span></code> の指定なしに使っていた場合に問題が発生していました。 [GitHub#625] [村上さんがパッチ提供]</p></li>
|
@@ -1350,8 +1614,8 @@
|
|
1350
1614
|
<li><p>[<a class="reference internal" href="reference/window_functions/window_record_number.html"><span class="doc">window_record_number</span></a>] ウィンドウ関数の引数が正しく渡されていない不具合を修正しました。 [GitHub#634] [村上さんがパッチ提供]</p></li>
|
1351
1615
|
</ul>
|
1352
1616
|
</div>
|
1353
|
-
<div class="section" id="
|
1354
|
-
<h3>感謝<a class="headerlink" href="#
|
1617
|
+
<div class="section" id="id78">
|
1618
|
+
<h3>感謝<a class="headerlink" href="#id78" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1355
1619
|
<ul class="simple">
|
1356
1620
|
<li><p>村上さん</p></li>
|
1357
1621
|
<li><p>aomi-nさん</p></li>
|
@@ -1511,154 +1775,178 @@
|
|
1511
1775
|
<h3><a href="index.html">目次</a></h3>
|
1512
1776
|
<ul>
|
1513
1777
|
<li><a class="reference internal" href="#">お知らせ</a><ul>
|
1514
|
-
<li><a class="reference internal" href="#release-9-0-
|
1778
|
+
<li><a class="reference internal" href="#release-9-0-6-2019-08-05">9.0.6リリース - 2019-08-05</a><ul>
|
1515
1779
|
<li><a class="reference internal" href="#improvements">改良</a></li>
|
1516
1780
|
<li><a class="reference internal" href="#fixes">修正</a></li>
|
1517
1781
|
<li><a class="reference internal" href="#thanks">感謝</a></li>
|
1518
1782
|
</ul>
|
1519
1783
|
</li>
|
1520
|
-
<li><a class="reference internal" href="#release-9-0-
|
1784
|
+
<li><a class="reference internal" href="#release-9-0-5-2019-07-30">9.0.5リリース - 2019-07-30</a><ul>
|
1521
1785
|
<li><a class="reference internal" href="#id1">改良</a></li>
|
1522
1786
|
<li><a class="reference internal" href="#id2">修正</a></li>
|
1523
1787
|
<li><a class="reference internal" href="#id3">感謝</a></li>
|
1524
1788
|
</ul>
|
1525
1789
|
</li>
|
1526
|
-
<li><a class="reference internal" href="#release-9-0-
|
1790
|
+
<li><a class="reference internal" href="#release-9-0-4-2019-06-29">9.0.4リリース - 2019-06-29</a><ul>
|
1527
1791
|
<li><a class="reference internal" href="#id4">改良</a></li>
|
1792
|
+
<li><a class="reference internal" href="#id5">修正</a></li>
|
1793
|
+
<li><a class="reference internal" href="#id6">感謝</a></li>
|
1528
1794
|
</ul>
|
1529
1795
|
</li>
|
1530
|
-
<li><a class="reference internal" href="#release-
|
1531
|
-
<li><a class="reference internal" href="#id5">改良</a></li>
|
1532
|
-
<li><a class="reference internal" href="#id6">修正</a></li>
|
1533
|
-
</ul>
|
1534
|
-
</li>
|
1535
|
-
<li><a class="reference internal" href="#release-8-1-0-2018-12-29">8.1.0リリース - 2018-12-29</a><ul>
|
1796
|
+
<li><a class="reference internal" href="#release-9-0-3-2019-05-29">9.0.3リリース - 2019-05-29</a><ul>
|
1536
1797
|
<li><a class="reference internal" href="#id7">改良</a></li>
|
1537
1798
|
<li><a class="reference internal" href="#id8">修正</a></li>
|
1799
|
+
<li><a class="reference internal" href="#id9">感謝</a></li>
|
1538
1800
|
</ul>
|
1539
1801
|
</li>
|
1540
|
-
<li><a class="reference internal" href="#release-
|
1541
|
-
<li><a class="reference internal" href="#
|
1542
|
-
<li><a class="reference internal" href="#
|
1543
|
-
<li><a class="reference internal" href="#
|
1802
|
+
<li><a class="reference internal" href="#release-9-0-2-2019-04-29">9.0.2リリース - 2019-04-29</a><ul>
|
1803
|
+
<li><a class="reference internal" href="#id10">改良</a></li>
|
1804
|
+
<li><a class="reference internal" href="#id11">修正</a></li>
|
1805
|
+
<li><a class="reference internal" href="#id12">感謝</a></li>
|
1544
1806
|
</ul>
|
1545
1807
|
</li>
|
1546
|
-
<li><a class="reference internal" href="#release-
|
1547
|
-
<li><a class="reference internal" href="#
|
1548
|
-
<li><a class="reference internal" href="#
|
1549
|
-
<li><a class="reference internal" href="#
|
1808
|
+
<li><a class="reference internal" href="#release-9-0-1-2019-03-29">9.0.1リリース - 2019-03-29</a><ul>
|
1809
|
+
<li><a class="reference internal" href="#id13">改良</a></li>
|
1810
|
+
<li><a class="reference internal" href="#id14">修正</a></li>
|
1811
|
+
<li><a class="reference internal" href="#id15">感謝</a></li>
|
1550
1812
|
</ul>
|
1551
1813
|
</li>
|
1552
|
-
<li><a class="reference internal" href="#release-
|
1553
|
-
<li><a class="reference internal" href="#
|
1554
|
-
<li><a class="reference internal" href="#id16">修正</a></li>
|
1814
|
+
<li><a class="reference internal" href="#release-9-0-0-2019-02-09">9.0.0リリース - 2019-02-09</a><ul>
|
1815
|
+
<li><a class="reference internal" href="#id16">改良</a></li>
|
1555
1816
|
</ul>
|
1556
1817
|
</li>
|
1557
|
-
<li><a class="reference internal" href="#release-8-
|
1818
|
+
<li><a class="reference internal" href="#release-8-1-1-2019-01-29">8.1.1リリース - 2019-01-29</a><ul>
|
1558
1819
|
<li><a class="reference internal" href="#id17">改良</a></li>
|
1559
1820
|
<li><a class="reference internal" href="#id18">修正</a></li>
|
1560
1821
|
</ul>
|
1561
1822
|
</li>
|
1562
|
-
<li><a class="reference internal" href="#release-8-0-
|
1823
|
+
<li><a class="reference internal" href="#release-8-1-0-2018-12-29">8.1.0リリース - 2018-12-29</a><ul>
|
1563
1824
|
<li><a class="reference internal" href="#id19">改良</a></li>
|
1564
1825
|
<li><a class="reference internal" href="#id20">修正</a></li>
|
1565
1826
|
</ul>
|
1566
1827
|
</li>
|
1567
|
-
<li><a class="reference internal" href="#release-8-0-
|
1828
|
+
<li><a class="reference internal" href="#release-8-0-9-2018-11-29">8.0.9リリース - 2018-11-29</a><ul>
|
1568
1829
|
<li><a class="reference internal" href="#id21">改良</a></li>
|
1569
1830
|
<li><a class="reference internal" href="#id22">修正</a></li>
|
1831
|
+
<li><a class="reference internal" href="#id23">感謝</a></li>
|
1570
1832
|
</ul>
|
1571
1833
|
</li>
|
1572
|
-
<li><a class="reference internal" href="#release-8-0-
|
1573
|
-
<li><a class="reference internal" href="#
|
1574
|
-
<li><a class="reference internal" href="#
|
1834
|
+
<li><a class="reference internal" href="#release-8-0-8-2018-10-29">8.0.8リリース - 2018-10-29</a><ul>
|
1835
|
+
<li><a class="reference internal" href="#id24">改良</a></li>
|
1836
|
+
<li><a class="reference internal" href="#id25">修正</a></li>
|
1837
|
+
<li><a class="reference internal" href="#id26">感謝</a></li>
|
1575
1838
|
</ul>
|
1576
1839
|
</li>
|
1577
|
-
<li><a class="reference internal" href="#release-8-0-
|
1578
|
-
<li><a class="reference internal" href="#
|
1579
|
-
<li><a class="reference internal" href="#
|
1580
|
-
<li><a class="reference internal" href="#id27">感謝</a></li>
|
1840
|
+
<li><a class="reference internal" href="#release-8-0-7-2018-09-29">8.0.7リリース - 2018-09-29</a><ul>
|
1841
|
+
<li><a class="reference internal" href="#id27">改良</a></li>
|
1842
|
+
<li><a class="reference internal" href="#id28">修正</a></li>
|
1581
1843
|
</ul>
|
1582
1844
|
</li>
|
1583
|
-
<li><a class="reference internal" href="#release-8-0-
|
1584
|
-
<li><a class="reference internal" href="#
|
1585
|
-
<li><a class="reference internal" href="#
|
1586
|
-
<li><a class="reference internal" href="#id30">感謝</a></li>
|
1845
|
+
<li><a class="reference internal" href="#release-8-0-6-2018-08-29">8.0.6リリース - 2018-08-29</a><ul>
|
1846
|
+
<li><a class="reference internal" href="#id29">改良</a></li>
|
1847
|
+
<li><a class="reference internal" href="#id30">修正</a></li>
|
1587
1848
|
</ul>
|
1588
1849
|
</li>
|
1589
|
-
<li><a class="reference internal" href="#release-8-0-
|
1850
|
+
<li><a class="reference internal" href="#release-8-0-5-2018-07-29">8.0.5リリース - 2018-07-29</a><ul>
|
1590
1851
|
<li><a class="reference internal" href="#id31">改良</a></li>
|
1591
1852
|
<li><a class="reference internal" href="#id32">修正</a></li>
|
1592
|
-
<li><a class="reference internal" href="#id33">感謝</a></li>
|
1593
1853
|
</ul>
|
1594
1854
|
</li>
|
1595
|
-
<li><a class="reference internal" href="#release-
|
1596
|
-
<li><a class="reference internal" href="#
|
1597
|
-
<li><a class="reference internal" href="#
|
1598
|
-
<li><a class="reference internal" href="#id36">感謝</a></li>
|
1855
|
+
<li><a class="reference internal" href="#release-8-0-4-2018-06-29">8.0.4リリース - 2018-06-29</a><ul>
|
1856
|
+
<li><a class="reference internal" href="#id33">改良</a></li>
|
1857
|
+
<li><a class="reference internal" href="#id34">修正</a></li>
|
1599
1858
|
</ul>
|
1600
1859
|
</li>
|
1601
|
-
<li><a class="reference internal" href="#release-
|
1860
|
+
<li><a class="reference internal" href="#release-8-0-3-2018-05-29">8.0.3リリース - 2018-05-29</a><ul>
|
1861
|
+
<li><a class="reference internal" href="#id35">改良</a></li>
|
1862
|
+
<li><a class="reference internal" href="#id36">修正</a></li>
|
1863
|
+
</ul>
|
1864
|
+
</li>
|
1865
|
+
<li><a class="reference internal" href="#release-8-0-2-2018-04-29">8.0.2リリース - 2018-04-29</a><ul>
|
1602
1866
|
<li><a class="reference internal" href="#id37">改良</a></li>
|
1603
1867
|
<li><a class="reference internal" href="#id38">修正</a></li>
|
1604
1868
|
<li><a class="reference internal" href="#id39">感謝</a></li>
|
1605
1869
|
</ul>
|
1606
1870
|
</li>
|
1607
|
-
<li><a class="reference internal" href="#release-
|
1871
|
+
<li><a class="reference internal" href="#release-8-0-1-2018-03-29">8.0.1リリース - 2018-03-29</a><ul>
|
1608
1872
|
<li><a class="reference internal" href="#id40">改良</a></li>
|
1609
1873
|
<li><a class="reference internal" href="#id41">修正</a></li>
|
1610
1874
|
<li><a class="reference internal" href="#id42">感謝</a></li>
|
1611
1875
|
</ul>
|
1612
1876
|
</li>
|
1613
|
-
<li><a class="reference internal" href="#release-
|
1877
|
+
<li><a class="reference internal" href="#release-8-0-0-2018-02-09">8.0.0リリース - 2018-02-09</a><ul>
|
1614
1878
|
<li><a class="reference internal" href="#id43">改良</a></li>
|
1615
1879
|
<li><a class="reference internal" href="#id44">修正</a></li>
|
1880
|
+
<li><a class="reference internal" href="#id45">感謝</a></li>
|
1881
|
+
</ul>
|
1882
|
+
</li>
|
1883
|
+
<li><a class="reference internal" href="#release-7-1-1-2018-01-29">7.1.1リリース - 2018-01-29</a><ul>
|
1884
|
+
<li><a class="reference internal" href="#id46">改良</a></li>
|
1885
|
+
<li><a class="reference internal" href="#id47">修正</a></li>
|
1886
|
+
<li><a class="reference internal" href="#id48">感謝</a></li>
|
1887
|
+
</ul>
|
1888
|
+
</li>
|
1889
|
+
<li><a class="reference internal" href="#release-7-1-0-2017-12-29">7.1.0リリース - 2017-12-29</a><ul>
|
1890
|
+
<li><a class="reference internal" href="#id49">改良</a></li>
|
1891
|
+
<li><a class="reference internal" href="#id50">修正</a></li>
|
1892
|
+
<li><a class="reference internal" href="#id51">感謝</a></li>
|
1893
|
+
</ul>
|
1894
|
+
</li>
|
1895
|
+
<li><a class="reference internal" href="#release-7-0-9-2017-11-29">7.0.9リリース - 2017-11-29</a><ul>
|
1896
|
+
<li><a class="reference internal" href="#id52">改良</a></li>
|
1897
|
+
<li><a class="reference internal" href="#id53">修正</a></li>
|
1898
|
+
<li><a class="reference internal" href="#id54">感謝</a></li>
|
1899
|
+
</ul>
|
1900
|
+
</li>
|
1901
|
+
<li><a class="reference internal" href="#release-7-0-8-2017-10-29">7.0.8リリース - 2017-10-29</a><ul>
|
1902
|
+
<li><a class="reference internal" href="#id55">改良</a></li>
|
1903
|
+
<li><a class="reference internal" href="#id56">修正</a></li>
|
1616
1904
|
</ul>
|
1617
1905
|
</li>
|
1618
1906
|
<li><a class="reference internal" href="#release-7-0-7-2017-09-29">7.0.7リリース - 2017-09-29</a><ul>
|
1619
|
-
<li><a class="reference internal" href="#
|
1620
|
-
<li><a class="reference internal" href="#
|
1907
|
+
<li><a class="reference internal" href="#id57">改良</a></li>
|
1908
|
+
<li><a class="reference internal" href="#id58">修正</a></li>
|
1621
1909
|
</ul>
|
1622
1910
|
</li>
|
1623
1911
|
<li><a class="reference internal" href="#release-7-0-6-2017-08-29">7.0.6リリース - 2017-08-29</a><ul>
|
1624
|
-
<li><a class="reference internal" href="#
|
1625
|
-
<li><a class="reference internal" href="#
|
1626
|
-
<li><a class="reference internal" href="#
|
1912
|
+
<li><a class="reference internal" href="#id59">改良</a></li>
|
1913
|
+
<li><a class="reference internal" href="#id60">修正</a></li>
|
1914
|
+
<li><a class="reference internal" href="#id61">感謝</a></li>
|
1627
1915
|
</ul>
|
1628
1916
|
</li>
|
1629
1917
|
<li><a class="reference internal" href="#release-7-0-5-2017-07-29">7.0.5リリース - 2017-07-29</a><ul>
|
1630
|
-
<li><a class="reference internal" href="#
|
1631
|
-
<li><a class="reference internal" href="#
|
1632
|
-
<li><a class="reference internal" href="#
|
1918
|
+
<li><a class="reference internal" href="#id62">改良</a></li>
|
1919
|
+
<li><a class="reference internal" href="#id63">修正</a></li>
|
1920
|
+
<li><a class="reference internal" href="#id64">感謝</a></li>
|
1633
1921
|
</ul>
|
1634
1922
|
</li>
|
1635
1923
|
<li><a class="reference internal" href="#release-7-0-4-2017-06-29">7.0.4リリース - 2017-06-29</a><ul>
|
1636
|
-
<li><a class="reference internal" href="#
|
1637
|
-
<li><a class="reference internal" href="#
|
1638
|
-
<li><a class="reference internal" href="#
|
1924
|
+
<li><a class="reference internal" href="#id65">改良</a></li>
|
1925
|
+
<li><a class="reference internal" href="#id66">修正</a></li>
|
1926
|
+
<li><a class="reference internal" href="#id67">感謝</a></li>
|
1639
1927
|
</ul>
|
1640
1928
|
</li>
|
1641
1929
|
<li><a class="reference internal" href="#release-7-0-3-2017-05-29">7.0.3リリース - 2017-05-29</a><ul>
|
1642
|
-
<li><a class="reference internal" href="#
|
1643
|
-
<li><a class="reference internal" href="#
|
1644
|
-
<li><a class="reference internal" href="#
|
1930
|
+
<li><a class="reference internal" href="#id68">改良</a></li>
|
1931
|
+
<li><a class="reference internal" href="#id69">修正</a></li>
|
1932
|
+
<li><a class="reference internal" href="#id70">感謝</a></li>
|
1645
1933
|
</ul>
|
1646
1934
|
</li>
|
1647
1935
|
<li><a class="reference internal" href="#release-7-0-2-2017-04-29">7.0.2リリース - 2017-04-29</a><ul>
|
1648
|
-
<li><a class="reference internal" href="#
|
1649
|
-
<li><a class="reference internal" href="#
|
1936
|
+
<li><a class="reference internal" href="#id71">改良</a></li>
|
1937
|
+
<li><a class="reference internal" href="#id72">修正</a></li>
|
1650
1938
|
</ul>
|
1651
1939
|
</li>
|
1652
1940
|
<li><a class="reference internal" href="#release-7-0-1-2017-03-29">7.0.1リリース - 2017-03-29</a><ul>
|
1653
|
-
<li><a class="reference internal" href="#
|
1654
|
-
<li><a class="reference internal" href="#
|
1655
|
-
<li><a class="reference internal" href="#
|
1941
|
+
<li><a class="reference internal" href="#id73">改良</a></li>
|
1942
|
+
<li><a class="reference internal" href="#id74">修正</a></li>
|
1943
|
+
<li><a class="reference internal" href="#id75">感謝</a></li>
|
1656
1944
|
</ul>
|
1657
1945
|
</li>
|
1658
1946
|
<li><a class="reference internal" href="#release-7-0-0-2017-02-09">7.0.0リリース - 2017-02-09</a><ul>
|
1659
|
-
<li><a class="reference internal" href="#
|
1660
|
-
<li><a class="reference internal" href="#
|
1661
|
-
<li><a class="reference internal" href="#
|
1947
|
+
<li><a class="reference internal" href="#id76">改良</a></li>
|
1948
|
+
<li><a class="reference internal" href="#id77">修正</a></li>
|
1949
|
+
<li><a class="reference internal" href="#id78">感謝</a></li>
|
1662
1950
|
</ul>
|
1663
1951
|
</li>
|
1664
1952
|
<li><a class="reference internal" href="#the-old-releases">古いリリース</a></li>
|
@@ -1686,7 +1974,7 @@
|
|
1686
1974
|
<li class="right" style="margin-right: 10px">
|
1687
1975
|
<a href="genindex.html" title="総合索引"
|
1688
1976
|
>索引</a></li>
|
1689
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.
|
1977
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.6ドキュメント</a> »</li>
|
1690
1978
|
</ul>
|
1691
1979
|
</div>
|
1692
1980
|
<div class="footer" role="contentinfo">
|