rroonga 4.0.3-x64-mingw32 → 4.0.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/Gemfile +1 -1
- data/README.textile +1 -1
- data/Rakefile +8 -1
- data/bin/grndump +1 -1
- data/bin/grntest-log-analyze +1 -1
- data/bin/groonga-database-inspect +1 -1
- data/bin/groonga-index-dump +1 -1
- data/doc/text/news.textile +28 -0
- data/ext/groonga/extconf.rb +12 -2
- data/ext/groonga/rb-grn-accessor.c +2 -1
- data/ext/groonga/rb-grn-array-cursor.c +1 -1
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-column.c +1 -1
- data/ext/groonga/rb-grn-context.c +7 -5
- data/ext/groonga/rb-grn-database.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie-cursor.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-encoding-support.c +1 -1
- data/ext/groonga/rb-grn-encoding.c +1 -1
- data/ext/groonga/rb-grn-exception.c +1 -1
- data/ext/groonga/rb-grn-expression-builder.c +1 -1
- data/ext/groonga/rb-grn-expression.c +1 -1
- data/ext/groonga/rb-grn-fix-size-column.c +1 -1
- data/ext/groonga/rb-grn-geo-point.c +1 -1
- data/ext/groonga/rb-grn-hash-cursor.c +1 -1
- data/ext/groonga/rb-grn-hash.c +1 -1
- data/ext/groonga/rb-grn-index-column.c +1 -1
- data/ext/groonga/rb-grn-index-cursor.c +1 -1
- data/ext/groonga/rb-grn-logger.c +1 -1
- data/ext/groonga/rb-grn-normalizer.c +1 -1
- data/ext/groonga/rb-grn-object.c +71 -45
- data/ext/groonga/rb-grn-operator.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-plugin.c +1 -1
- data/ext/groonga/rb-grn-posting.c +1 -1
- data/ext/groonga/rb-grn-procedure-type.c +40 -0
- data/ext/groonga/rb-grn-procedure.c +17 -4
- data/ext/groonga/rb-grn-query-logger.c +1 -1
- data/ext/groonga/rb-grn-record.c +1 -1
- data/ext/groonga/rb-grn-snippet.c +1 -1
- data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
- data/ext/groonga/rb-grn-table-cursor.c +1 -1
- data/ext/groonga/rb-grn-table-key-support.c +1 -1
- data/ext/groonga/rb-grn-table.c +3 -2
- data/ext/groonga/rb-grn-type.c +1 -1
- data/ext/groonga/rb-grn-utils.c +1 -1
- data/ext/groonga/rb-grn-variable-size-column.c +55 -27
- data/ext/groonga/rb-grn-variable.c +1 -1
- data/ext/groonga/rb-grn.h +4 -2
- data/ext/groonga/rb-groonga.c +3 -2
- data/extconf.rb +1 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/groonga/column.rb +1 -1
- data/lib/groonga/context/command-executor.rb +1 -1
- data/lib/groonga/context.rb +1 -1
- data/lib/groonga/database-inspector.rb +1 -1
- data/lib/groonga/database.rb +1 -1
- data/lib/groonga/dumper.rb +1 -1
- data/lib/groonga/expression-builder-19.rb +1 -1
- data/lib/groonga/expression-builder.rb +1 -1
- data/lib/groonga/geo-point.rb +1 -1
- data/lib/groonga/grntest-log.rb +1 -1
- data/lib/groonga/index-column.rb +1 -1
- data/lib/groonga/logger.rb +1 -1
- data/lib/groonga/memory-pool.rb +1 -2
- data/lib/groonga/pagination.rb +1 -1
- data/lib/groonga/patricia-trie.rb +1 -1
- data/lib/groonga/posting.rb +1 -1
- data/lib/groonga/query-logger.rb +1 -1
- data/lib/groonga/record.rb +6 -2
- data/lib/groonga/schema.rb +1 -1
- data/lib/groonga/statistic-measurer.rb +1 -1
- data/lib/groonga/sub-records.rb +1 -1
- data/lib/groonga/table.rb +1 -1
- data/lib/groonga.rb +1 -1
- data/misc/grnop2ruby.rb +1 -1
- data/rroonga-build.rb +4 -4
- data/rroonga.gemspec +3 -3
- data/test/groonga-test-utils.rb +4 -4
- data/test/run-test.rb +1 -1
- data/test/test-accessor.rb +1 -1
- data/test/test-array.rb +1 -1
- data/test/test-column.rb +1 -1
- data/test/test-command-select.rb +1 -1
- data/test/test-context.rb +21 -16
- data/test/test-convert.rb +1 -1
- data/test/test-database-dumper.rb +1 -1
- data/test/test-database-inspector.rb +1 -1
- data/test/test-database.rb +38 -25
- data/test/test-double-array-trie.rb +1 -1
- data/test/test-encoding.rb +1 -1
- data/test/test-exception.rb +12 -7
- data/test/test-expression-builder.rb +1 -1
- data/test/test-expression.rb +1 -1
- data/test/test-fix-size-column.rb +1 -1
- data/test/test-geo-point.rb +1 -1
- data/test/test-gqtp.rb +1 -1
- data/test/test-hash.rb +1 -1
- data/test/test-index-column.rb +1 -1
- data/test/test-index-cursor.rb +1 -1
- data/test/test-lock-timeout.rb +1 -1
- data/test/test-logger.rb +1 -1
- data/test/test-memory-pool.rb +1 -1
- data/test/test-normalizer.rb +1 -1
- data/test/test-pagination.rb +1 -1
- data/test/test-patricia-trie.rb +1 -1
- data/test/test-plugin.rb +1 -1
- data/test/test-procedure.rb +9 -2
- data/test/test-record.rb +1 -1
- data/test/test-remote.rb +1 -1
- data/test/test-schema-create-table.rb +1 -1
- data/test/test-schema-dumper.rb +1 -1
- data/test/test-schema-type.rb +1 -1
- data/test/test-schema.rb +1 -1
- data/test/test-snippet.rb +1 -1
- data/test/test-statistic-measurer.rb +1 -1
- data/test/test-sub-records.rb +1 -1
- data/test/test-table-dumper.rb +1 -1
- data/test/test-table-key-support.rb +1 -1
- data/test/test-table-offset-and-limit.rb +1 -1
- data/test/test-table-select-mecab.rb +1 -1
- data/test/test-table-select-normalize.rb +1 -1
- data/test/test-table-select-weight.rb +1 -1
- data/test/test-table-select.rb +1 -1
- data/test/test-table-traverse.rb +1 -1
- data/test/test-table.rb +1 -1
- data/test/test-type.rb +1 -1
- data/test/test-variable-size-column.rb +136 -67
- data/test/test-variable.rb +1 -1
- data/test/test-vector-column.rb +1 -1
- data/test/test-version.rb +1 -1
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/mecab-config +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga/plugin.h +11 -83
- data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
- data/vendor/local/include/groonga/groonga.h +38 -5
- data/vendor/local/include/msgpack/fbuffer.h +47 -0
- data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
- data/vendor/local/include/msgpack/object.hpp +12 -3
- data/vendor/local/include/msgpack/pack.h +7 -3
- data/vendor/local/include/msgpack/pack.hpp +26 -7
- data/vendor/local/include/msgpack/pack_template.h +34 -7
- data/vendor/local/include/msgpack/sbuffer.h +3 -2
- data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
- data/vendor/local/include/msgpack/sysdep.h +27 -14
- data/vendor/local/include/msgpack/type/define.hpp +747 -561
- data/vendor/local/include/msgpack/type/float.hpp +24 -4
- data/vendor/local/include/msgpack/type/int.hpp +78 -13
- data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
- data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
- data/vendor/local/include/msgpack/type.hpp +2 -1
- data/vendor/local/include/msgpack/unpack.h +9 -9
- data/vendor/local/include/msgpack/unpack_define.h +16 -14
- data/vendor/local/include/msgpack/unpack_template.h +19 -8
- data/vendor/local/include/msgpack/version.h +1 -1
- data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
- data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
- data/vendor/local/include/msgpack/zbuffer.h +3 -2
- data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
- data/vendor/local/include/msgpack/zone.h +5 -4
- data/vendor/local/include/msgpack/zone.hpp +10 -1
- data/vendor/local/include/msgpack.h +1 -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/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +1 -1
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +1 -1
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
- data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
- data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
- data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
- data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
- data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
- data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
- data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
- data/vendor/local/share/groonga/html/admin/index.html +75 -75
- data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
- data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
- data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
- data/vendor/local/share/license/groonga/README.md +49 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
- data/vendor/local/share/man/man1/groonga.1 +2008 -1240
- metadata +112 -84
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
- data/vendor/local/share/license/groonga/AUTHORS +0 -17
@@ -0,0 +1,804 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
|
+
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
7
|
+
<head>
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
|
+
|
10
|
+
<title>Release 2.1.2 - 2013/01/29 — Groonga v4.0.4-214-gb1aaec1 documentation</title>
|
11
|
+
|
12
|
+
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
|
+
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
14
|
+
|
15
|
+
<script type="text/javascript">
|
16
|
+
var DOCUMENTATION_OPTIONS = {
|
17
|
+
URL_ROOT: '../',
|
18
|
+
VERSION: '4.0.4-214-gb1aaec1',
|
19
|
+
COLLAPSE_INDEX: false,
|
20
|
+
FILE_SUFFIX: '.html',
|
21
|
+
HAS_SOURCE: true
|
22
|
+
};
|
23
|
+
</script>
|
24
|
+
<script type="text/javascript" src="../_static/jquery.js"></script>
|
25
|
+
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
|
+
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
|
+
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
+
<link rel="top" title="Groonga v4.0.4-214-gb1aaec1 documentation" href="../index.html" />
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div class="header">
|
32
|
+
<h1 class="title">
|
33
|
+
<a id="top-link" href="../index.html">
|
34
|
+
<span class="project">groonga</span>
|
35
|
+
<span class="separator">-</span>
|
36
|
+
<span class="description">An open-source fulltext search engine and column store.</span>
|
37
|
+
</a>
|
38
|
+
</h1>
|
39
|
+
|
40
|
+
<div class="other-language-links">
|
41
|
+
<ul>
|
42
|
+
<li><a href="../../../ja/html/news/2.x.html"><img src="../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
|
48
|
+
<div class="related">
|
49
|
+
<h3>Navigation</h3>
|
50
|
+
<ul>
|
51
|
+
<li class="right" style="margin-right: 10px">
|
52
|
+
<a href="../genindex.html" title="General Index"
|
53
|
+
accesskey="I">index</a></li>
|
54
|
+
<li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> »</li>
|
55
|
+
</ul>
|
56
|
+
</div>
|
57
|
+
|
58
|
+
<div class="document">
|
59
|
+
<div class="documentwrapper">
|
60
|
+
<div class="bodywrapper">
|
61
|
+
<div class="body">
|
62
|
+
|
63
|
+
<div class="section" id="release-2-1-2-2013-01-29">
|
64
|
+
<span id="release-2-1-2"></span><h1>Release 2.1.2 - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="Permalink to this headline">¶</a></h1>
|
65
|
+
<div class="section" id="improvements">
|
66
|
+
<h2>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h2>
|
67
|
+
<ul class="simple">
|
68
|
+
<li>Supported multiple <tt class="docutils literal"><span class="pre">query()</span></tt> in a select command.
|
69
|
+
For example, you can specify the keyword which has different weight such as
|
70
|
+
'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'
|
71
|
+
for <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
72
|
+
<li>Dropped experimental view feature.</li>
|
73
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> API for custom logger.
|
74
|
+
Note that <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> API is deprecated, use <tt class="docutils literal"><span class="pre">grn_logger</span></tt> API instead.</li>
|
75
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> and <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> API.
|
76
|
+
Note that global <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> variable was removed. Use above API.</li>
|
77
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> and
|
78
|
+
<tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> API.
|
79
|
+
Note that global <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> variable was removed. Use above API.</li>
|
80
|
+
<li>Added translated documentation about <a class="reference internal" href="../reference/tables.html"><em>Tables</em></a> and <a class="reference internal" href="../reference/normalizers.html"><em>Normalizers</em></a>.</li>
|
81
|
+
<li>[deb][rpm] Improved to install with missing dictionary when
|
82
|
+
<tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> package is installed.</li>
|
83
|
+
<li>Supported <a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a> with range search.
|
84
|
+
For example, you can specify 'column1.column2...columnN <= "1988-01-04 00:00:00"'
|
85
|
+
in <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
86
|
+
<li>[rpm][fedora] Supported Fedora 18.</li>
|
87
|
+
<li>[rpm][fedora] Dropped Fedora 17 support.</li>
|
88
|
+
<li>[doc] Added documentation for <a class="reference internal" href="../server/package.html"><em>Server packages</em></a>.</li>
|
89
|
+
<li>[doc] Added documentation for <a class="reference internal" href="../reference/functions/query.html"><em>query</em></a>.</li>
|
90
|
+
</ul>
|
91
|
+
</div>
|
92
|
+
<div class="section" id="fixes">
|
93
|
+
<h2>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h2>
|
94
|
+
<ul class="simple">
|
95
|
+
<li>Fixed not to report an error even though MeCab tokenizer shared object
|
96
|
+
isn't found. [groonga-dev,01174] [Reported by wing]</li>
|
97
|
+
<li>[httpd] Fixed not to fail configure on CentOS 5.4 by setting
|
98
|
+
<tt class="docutils literal"><span class="pre">SED</span></tt> variable explicitly.</li>
|
99
|
+
<li>Fixed a crash bug that not initialized vector column value is accessed
|
100
|
+
by select command.</li>
|
101
|
+
</ul>
|
102
|
+
</div>
|
103
|
+
<div class="section" id="thanks">
|
104
|
+
<h2>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h2>
|
105
|
+
<ul class="simple">
|
106
|
+
<li>wing</li>
|
107
|
+
</ul>
|
108
|
+
</div>
|
109
|
+
</div>
|
110
|
+
<div class="section" id="release-2-1-1-2012-12-29">
|
111
|
+
<span id="release-2-1-1"></span><h1>Release 2.1.1 - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="Permalink to this headline">¶</a></h1>
|
112
|
+
<p>This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
|
113
|
+
instead.</p>
|
114
|
+
<div class="section" id="id1">
|
115
|
+
<h2>Fixes<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
|
116
|
+
<ul class="simple">
|
117
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> information in database that is
|
118
|
+
created by groonga 2.0.8 or ealier is dropped.</li>
|
119
|
+
</ul>
|
120
|
+
</div>
|
121
|
+
</div>
|
122
|
+
<div class="section" id="release-2-1-0-2012-12-29">
|
123
|
+
<span id="release-2-1-0"></span><h1>Release 2.1.0 - 2012/12/29<a class="headerlink" href="#release-2-1-0-2012-12-29" title="Permalink to this headline">¶</a></h1>
|
124
|
+
<div class="admonition caution">
|
125
|
+
<p class="first admonition-title">Caution</p>
|
126
|
+
<p class="last">Use 2.1.1 instead of 2.1.0. 2.1.0 has a serious bug related
|
127
|
+
<tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt>.</p>
|
128
|
+
</div>
|
129
|
+
<div class="admonition caution">
|
130
|
+
<p class="first admonition-title">Caution</p>
|
131
|
+
<p>This release has backward incompatible changes against <tt class="docutils literal"><span class="pre">table_list</span></tt> and
|
132
|
+
<tt class="docutils literal"><span class="pre">column_list</span></tt> commands. If you use own program which depends on the output
|
133
|
+
results above commands, you need to support null instead of "null" string.</p>
|
134
|
+
<p>This release has supported <tt class="docutils literal"><span class="pre">--normalizer</span></tt> option, but there is
|
135
|
+
side effect for this feature. If you open old version of groonga
|
136
|
+
database at least once, you can not open its database by old
|
137
|
+
version of groonga.</p>
|
138
|
+
<p class="last">There is also another backward incompatible change agaist plugin API for
|
139
|
+
tokenizer. The argument of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API has changed.
|
140
|
+
This API change affects developer of tokenizer plugin.</p>
|
141
|
+
</div>
|
142
|
+
<div class="section" id="id2">
|
143
|
+
<h2>Improvements<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
|
144
|
+
<ul class="simple">
|
145
|
+
<li>[doc] Added documentation about <a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
146
|
+
<li>Supported the expression as <a class="reference internal" href="../reference/functions/snippet_html.html"><em>snippet_html</em></a> arguments.
|
147
|
+
This change enables you to use <tt class="docutils literal"><span class="pre">snippet_html("STRING"</span> <span class="pre">+</span> <span class="pre">"STRING")</span></tt> for example.
|
148
|
+
You can specify column name or literal for "STRING". [Reported by Tomoatsu Shimada]</li>
|
149
|
+
<li>Supported to create own normalizer as a plugin.</li>
|
150
|
+
<li>Moved <tt class="docutils literal"><span class="pre">groonga-query-log-analyzer</span></tt> as
|
151
|
+
<a class="reference external" href="http://rubygems.org/gems/groonga-query-log">groonga-query-log</a> RubyGems.
|
152
|
+
It enables you to analyze query logs without installing groonga package.</li>
|
153
|
+
<li>Supported <tt class="docutils literal"><span class="pre">--normalizer</span></tt> option for <a class="reference internal" href="../reference/commands/table_create.html"><em>table_create</em></a> command.
|
154
|
+
This change enables you to specify normalizer plugin.</li>
|
155
|
+
<li>Changed "null" string to null value as meaning for "No Object".
|
156
|
+
This is backward incompatible change and affects output results of introspection
|
157
|
+
related commands such as <tt class="docutils literal"><span class="pre">table_list</span></tt> and <tt class="docutils literal"><span class="pre">column_list</span></tt>.</li>
|
158
|
+
<li>Added a flag which controls behavior about normalizer as the last argument
|
159
|
+
of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API.</li>
|
160
|
+
<li>Supported continuous line in <a class="reference internal" href="../reference/executables/groonga.html#command-list-with-continuous-line"><em>コマンド</em></a> list.</li>
|
161
|
+
<li>Improved to support not only no key table, but also hash table, patricia trie
|
162
|
+
and double array trie for <a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
163
|
+
</ul>
|
164
|
+
</div>
|
165
|
+
<div class="section" id="id3">
|
166
|
+
<h2>Fixes<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
|
167
|
+
<ul class="simple">
|
168
|
+
<li>[windows] Added missing <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> flag to open file correctly.
|
169
|
+
This change fixes the infinite loop problem about groonga HTTP server.
|
170
|
+
[GitHub#47] [Patch by Shimomura Tatsuya]</li>
|
171
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">--default-match-escalation-threshold</span></tt> doesn't accept
|
172
|
+
negative value to disable functionality.
|
173
|
+
This fix enable you to disable search escalation.
|
174
|
+
see <a class="reference internal" href="../reference/executables/groonga.html#cmdoption--default-match-escalation-threshold"><em class="xref std std-option">--default-match-escalation-threshold</em></a> about details.</li>
|
175
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">_score</span></tt> after "*" is ignored in <tt class="docutils literal"><span class="pre">--output_columns</span></tt>.</li>
|
176
|
+
</ul>
|
177
|
+
</div>
|
178
|
+
<div class="section" id="id4">
|
179
|
+
<h2>Thanks<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
|
180
|
+
<ul class="simple">
|
181
|
+
<li>Tomoatsu Shimada</li>
|
182
|
+
<li>Shimomura Tatsuya</li>
|
183
|
+
</ul>
|
184
|
+
</div>
|
185
|
+
</div>
|
186
|
+
<div class="section" id="release-2-0-9-2012-11-29">
|
187
|
+
<span id="release-2-0-9"></span><h1>Release 2.0.9 - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="Permalink to this headline">¶</a></h1>
|
188
|
+
<div class="section" id="id5">
|
189
|
+
<h2>Improvements<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
|
190
|
+
<ul class="simple">
|
191
|
+
<li>Supported to calculate the value of distance accross border
|
192
|
+
in <tt class="docutils literal"><span class="pre">geo_distance</span></tt> with <tt class="docutils literal"><span class="pre">rectangle</span></tt> as approximate type. [#1534]</li>
|
193
|
+
<li>[doc] Added the <a class="reference internal" href="../spec/gqtp.html"><em>GQTP</em></a> specification.</li>
|
194
|
+
<li>Improved to ignore non critical <tt class="docutils literal"><span class="pre">getaddrinfo()</span></tt> error which groonga command emits on startup.
|
195
|
+
This change does not affects nomal use of groonga because it just checked whether default hostname
|
196
|
+
is resolved in previous version.</li>
|
197
|
+
<li>[experimental] Added <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> function which extract keyword and surrounding text.
|
198
|
+
See <a class="reference internal" href="../reference/functions/snippet_html.html"><em>snippet_html</em></a> about details.</li>
|
199
|
+
<li>Supported to report error reason when error occured during reading table record.</li>
|
200
|
+
<li>Supported to search with keyword by nested index notation ( concatinate multiple
|
201
|
+
indexed column name with dot character ) if there is a relationship between
|
202
|
+
multiple table with index.</li>
|
203
|
+
<li>Supported to log "[tokenizer][mecab]" tag when using <tt class="docutils literal"><span class="pre">TokenMecab</span></tt> tokenizer.</li>
|
204
|
+
<li>Supported to log "[tokenizer][kytea]" tag when using <tt class="docutils literal"><span class="pre">TokenKyTea</span></tt> tokenizer.</li>
|
205
|
+
<li>Improved to use separated array for command error location as output results.
|
206
|
+
This change is incompatibility change, but does not affects existing program.</li>
|
207
|
+
<li>Added documentation for <a class="reference internal" href="../reference/command/output_format.html"><em>Output format</em></a>.</li>
|
208
|
+
<li>Added documentation for <a class="reference internal" href="../reference/command/return_code.html"><em>Return code</em></a> of output results.</li>
|
209
|
+
<li>Supported range search by using index.</li>
|
210
|
+
</ul>
|
211
|
+
</div>
|
212
|
+
<div class="section" id="id6">
|
213
|
+
<h2>Fixes<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
|
214
|
+
<ul class="simple">
|
215
|
+
<li>Fixed to use network byte order for status code of <a class="reference internal" href="../spec/gqtp.html#gqtp-header-spec"><em>GQTP header</em></a> to follow
|
216
|
+
the normal network protocol convention.
|
217
|
+
This change affects that groonga <= 2.0.8 client which connects to groonga server 2.0.9
|
218
|
+
or later can not show status code properly when command failed.</li>
|
219
|
+
<li>Fixed a bug that UTF-8 normalization computes wrong offset which affects to return value
|
220
|
+
of <tt class="docutils literal"><span class="pre">snippet_html()</span></tt>. This change not to insert tag of snippet into invalid location.
|
221
|
+
[#1531] [Reported by Tomoatsu Shimada]</li>
|
222
|
+
<li>[windows] Fixed over allocated memory access which cause segmentation fault
|
223
|
+
on startup by groonga command. [#1532] [Patch by Akio Tajima]</li>
|
224
|
+
<li>[windows] Fixed a bug that data stored in column couldn't be read when total amount of data
|
225
|
+
stored in column exceeds 128MB. [groonga-dev,01088] [Reported by ongaeshi]</li>
|
226
|
+
<li>Fixed a bug that searching with indexed column for <tt class="docutils literal"><span class="pre">Int*</span></tt> and <tt class="docutils literal"><span class="pre">UInt*</span></tt>
|
227
|
+
except <tt class="docutils literal"><span class="pre">Int32/Uint32</span></tt> returns invalid results.</li>
|
228
|
+
<li>Fixed a bug that deleting record can be found.</li>
|
229
|
+
<li>Fixed a bug that latin1 and koi8r normalizations could not process all string data
|
230
|
+
if given string contains NULL character on the way.</li>
|
231
|
+
<li>Fixed to return the correct default value of type when no data stored in column is
|
232
|
+
referenced by <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
233
|
+
<li>Fixed to exclude the value of vector column metadata in <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><em>Offline index construction</em></a>.
|
234
|
+
This change not to contain such a metadata as search results.</li>
|
235
|
+
</ul>
|
236
|
+
</div>
|
237
|
+
<div class="section" id="id7">
|
238
|
+
<h2>Thanks<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
|
239
|
+
<ul class="simple">
|
240
|
+
<li>Tomoatsu Shimada</li>
|
241
|
+
<li>Akio Tajima</li>
|
242
|
+
<li>ongaeshi</li>
|
243
|
+
</ul>
|
244
|
+
</div>
|
245
|
+
</div>
|
246
|
+
<div class="section" id="release-2-0-8-2012-10-29">
|
247
|
+
<span id="release-2-0-8"></span><h1>Release 2.0.8 - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="Permalink to this headline">¶</a></h1>
|
248
|
+
<div class="section" id="id8">
|
249
|
+
<h2>Improvements<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
|
250
|
+
<ul class="simple">
|
251
|
+
<li>[rpm] Improved the description of server-http and httpd packages.
|
252
|
+
[Suggested by Daiki Ueno]</li>
|
253
|
+
<li>Supported custom query expansion by plugin.</li>
|
254
|
+
<li>[experimental] Added query expander <tt class="docutils literal"><span class="pre">QueryExpanderTSV</span></tt> plugin.</li>
|
255
|
+
<li>Supported Ubuntu 12.10 Quantal Quetzal</li>
|
256
|
+
<li>[experimental] Supported function call in <tt class="docutils literal"><span class="pre">output_columns</span></tt>.</li>
|
257
|
+
<li>[doc][rpm] Add missing description about installing MeCab dictionary.
|
258
|
+
[Reported by serihiro]</li>
|
259
|
+
</ul>
|
260
|
+
</div>
|
261
|
+
<div class="section" id="id9">
|
262
|
+
<h2>Fixes<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h2>
|
263
|
+
<ul class="simple">
|
264
|
+
<li>[rpm] Fixed to remove needless "Requires" from spec file.
|
265
|
+
[Reported by Daiki Ueno]</li>
|
266
|
+
<li>[rpm] Fixed inaccurate description about license of groonga-server-gqtp.</li>
|
267
|
+
<li>[admin] Fixed record edit button shows wrong record. [GitHub#34]
|
268
|
+
[Reported by firewood]</li>
|
269
|
+
<li>[deb] Fixed to remove needless dependency to pcre.</li>
|
270
|
+
<li>[deb] Fixed to bundle missing table plugin.</li>
|
271
|
+
</ul>
|
272
|
+
</div>
|
273
|
+
<div class="section" id="id10">
|
274
|
+
<h2>Thanks<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
|
275
|
+
<ul class="simple">
|
276
|
+
<li>Daiki Ueno</li>
|
277
|
+
<li>firewood</li>
|
278
|
+
<li>serihiro</li>
|
279
|
+
</ul>
|
280
|
+
</div>
|
281
|
+
</div>
|
282
|
+
<div class="section" id="release-2-0-7-2012-09-29">
|
283
|
+
<span id="release-2-0-7"></span><h1>Release 2.0.7 - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="Permalink to this headline">¶</a></h1>
|
284
|
+
<div class="section" id="id11">
|
285
|
+
<h2>Improvements<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
|
286
|
+
<ul class="simple">
|
287
|
+
<li>[doc] Added more descriptions about <tt class="docutils literal"><span class="pre">--query_flags</span></tt>.</li>
|
288
|
+
<li>[doc][httpd] Added sample configuration for gzip compression.</li>
|
289
|
+
<li>[httpd][rpm][centos] Added groonga-httpd init script.</li>
|
290
|
+
<li>[rpm] Added logrotate config files.</li>
|
291
|
+
<li>Supported creating database during install process.</li>
|
292
|
+
<li>[httpd] Supported <tt class="docutils literal"><span class="pre">groonga_database_auto_create</span></tt> directive.</li>
|
293
|
+
<li>Supported score respected merge by set operation. [GitHub#31]</li>
|
294
|
+
<li>[httpd] Supported <tt class="docutils literal"><span class="pre">load</span></tt> command by POST.</li>
|
295
|
+
<li>Added error check for creating temporary result set. [GitHub#33]</li>
|
296
|
+
<li>Added GQTP server package.</li>
|
297
|
+
<li>Added <tt class="docutils literal"><span class="pre">max()</span></tt> function.</li>
|
298
|
+
<li>Added <tt class="docutils literal"><span class="pre">min()</span></tt> function.</li>
|
299
|
+
</ul>
|
300
|
+
</div>
|
301
|
+
<div class="section" id="id12">
|
302
|
+
<h2>Fixes<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
|
303
|
+
<ul class="simple">
|
304
|
+
<li>Fixed to set domain to vector elements to <tt class="docutils literal"><span class="pre">load</span></tt> command. [GitHub#30]</li>
|
305
|
+
<li>[httpd] Fixed missing NULL initialization. [Reported by @Kiske]</li>
|
306
|
+
<li>[httpd] Fixed missing size about <tt class="docutils literal"><span class="pre">content_type_len</span></tt>.</li>
|
307
|
+
<li>[rpm][fedora] Fixed to use <tt class="docutils literal"><span class="pre">--bind-address</span></tt> in <tt class="docutils literal"><span class="pre">groonga.service</span></tt>.</li>
|
308
|
+
<li>Fixed crash by invalid argument filter. [GitHub#32]</li>
|
309
|
+
<li>Fixed a bug that Time -> Time cast breaks value.</li>
|
310
|
+
<li>Fixed a bug that Time -> Float cast breaks value.</li>
|
311
|
+
</ul>
|
312
|
+
</div>
|
313
|
+
<div class="section" id="id13">
|
314
|
+
<h2>Thanks<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h2>
|
315
|
+
<ul class="simple">
|
316
|
+
<li>@Kiske</li>
|
317
|
+
</ul>
|
318
|
+
</div>
|
319
|
+
</div>
|
320
|
+
<div class="section" id="release-2-0-6-2012-08-29">
|
321
|
+
<span id="release-2-0-6"></span><h1>Release 2.0.6 - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="Permalink to this headline">¶</a></h1>
|
322
|
+
<div class="section" id="id14">
|
323
|
+
<h2>Improvements<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
|
324
|
+
<ul class="simple">
|
325
|
+
<li>[deb][rpm] Added <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> meta package. [#1451]</li>
|
326
|
+
<li>Supported <tt class="docutils literal"><span class="pre">--query_flags</span></tt> option to <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
327
|
+
<li>Supported PCRE auto detection for groonga-httpd.</li>
|
328
|
+
<li>[doc] Added information about Twitter and Facebook.</li>
|
329
|
+
<li>Improved to show error message from MeCab on <tt class="docutils literal"><span class="pre">mecab_new2()</span></tt> failure.</li>
|
330
|
+
<li>[doc] Added details about groonga for server use.</li>
|
331
|
+
<li>Improved to log details about <tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt>.</li>
|
332
|
+
<li>Supported custom selector definition.</li>
|
333
|
+
<li>Supported <tt class="docutils literal"><span class="pre">--working-directory</span></tt> option for groonga.</li>
|
334
|
+
<li>Supported <tt class="docutils literal"><span class="pre">dump</span></tt> command for groonga-httpd.</li>
|
335
|
+
<li>Improved to show not found target name for <tt class="docutils literal"><span class="pre">clearlock</span></tt> command.</li>
|
336
|
+
<li>Improved error messages about <tt class="docutils literal"><span class="pre">get</span></tt> command implemented by table plugin.</li>
|
337
|
+
<li>[rpm][centos] Supported MeCab 0.994. [#1455]
|
338
|
+
[Suggested by IWAI, Masaharu]</li>
|
339
|
+
<li>Supported changing default logger's max level before <tt class="docutils literal"><span class="pre">grn_init()</span></tt>.</li>
|
340
|
+
<li>Added <tt class="docutils literal"><span class="pre">all_records()</span></tt> function which copies all record IDs to the result table.</li>
|
341
|
+
<li>Supported '-WORD' in <tt class="docutils literal"><span class="pre">--query</span></tt> of the select command.</li>
|
342
|
+
</ul>
|
343
|
+
</div>
|
344
|
+
<div class="section" id="id15">
|
345
|
+
<h2>Fixes<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h2>
|
346
|
+
<ul class="simple">
|
347
|
+
<li>[doc] Fixed the execution examples. [#1428]
|
348
|
+
[Reported by IWAI, Masaharu]</li>
|
349
|
+
<li>[deb] Fixed not to force groonga user/group by init script for groonga-httpd.</li>
|
350
|
+
<li>[rpm][fedora] Fixed missing stop parameter for groonga-httpd service.</li>
|
351
|
+
<li>Fixed a bug that the last 1 byte for cache key is ignored by <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
352
|
+
<li>Fixed detection of the number of arguments in the complex function call.</li>
|
353
|
+
<li>Fixed to suppress a warning by Clang.</li>
|
354
|
+
<li>Fixed backward incompatibility about missing <tt class="docutils literal"><span class="pre">add</span></tt> command related error
|
355
|
+
by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt> command.</li>
|
356
|
+
<li>[windows] Fixed database open failure which is related to binary data.
|
357
|
+
[Reported by @yito]</li>
|
358
|
+
</ul>
|
359
|
+
</div>
|
360
|
+
<div class="section" id="id16">
|
361
|
+
<h2>Thanks<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h2>
|
362
|
+
<ul class="simple">
|
363
|
+
<li>IWAI, Masaharu</li>
|
364
|
+
<li>@yito</li>
|
365
|
+
</ul>
|
366
|
+
</div>
|
367
|
+
</div>
|
368
|
+
<div class="section" id="release-2-0-5-2012-07-29">
|
369
|
+
<span id="release-2-0-5"></span><h1>Release 2.0.5 - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="Permalink to this headline">¶</a></h1>
|
370
|
+
<div class="section" id="id17">
|
371
|
+
<h2>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
|
372
|
+
<ul class="simple">
|
373
|
+
<li>Supported calculating the value of distance with "rect" or "rectangle"
|
374
|
+
argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
375
|
+
<li>[doc] Added some literals description in script syntax.</li>
|
376
|
+
<li>Supported other directory build for groonga-suggest and groonga-httpd.</li>
|
377
|
+
<li>Supported ";" as a query parameter separator. [#1406]
|
378
|
+
[Suggested by IWAI, Masaharu]</li>
|
379
|
+
<li>[doc] Added descriptions about script syntax.</li>
|
380
|
+
<li>Supported near search by <tt class="docutils literal"><span class="pre">'column</span> <span class="pre">*N</span> <span class="pre">"word1</span> <span class="pre">word2</span> <span class="pre">..."'</span></tt> in script syntax.
|
381
|
+
[#1423]</li>
|
382
|
+
<li>[doc] Added a description about limitation of suffix search.</li>
|
383
|
+
<li>Supported near search for <tt class="docutils literal"><span class="pre">_key</span></tt> pseudo column. [GitHub#19]</li>
|
384
|
+
<li>[doc] Added basic ECMAScript related syntaxes.</li>
|
385
|
+
<li>[doc] Updated a description about <a class="reference internal" href="../reference/functions/geo_distance.html"><em>geo_distance</em></a>.</li>
|
386
|
+
<li>[rpm][fedora] Supported Fedora 17.</li>
|
387
|
+
<li>[rpm][fedora] Dropped Fedora 16 support.</li>
|
388
|
+
<li>Supported logical not <tt class="docutils literal"><span class="pre">"!"</span></tt> operator. [GitHub#22]</li>
|
389
|
+
<li>[httpd] Supported per location groonga database.</li>
|
390
|
+
<li>Improved to return error messages while load command is processing.</li>
|
391
|
+
<li>Improved to exit load command when an uncontinuable error occurred.</li>
|
392
|
+
<li>Improved to stop load command for invalid --columns value.</li>
|
393
|
+
<li>Supported to open locked database. [GitHub#21]</li>
|
394
|
+
</ul>
|
395
|
+
</div>
|
396
|
+
<div class="section" id="id18">
|
397
|
+
<h2>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
|
398
|
+
<ul class="simple">
|
399
|
+
<li>Fixed a build problem about groonga-httpd on Mac OS X.
|
400
|
+
[Reported by SHIMADA Koji]</li>
|
401
|
+
<li>Fixed not to use installed groonga's header files for groonga-httpd.</li>
|
402
|
+
<li>Fixed a build problem about groonga on Mac OS X Lion.</li>
|
403
|
+
<li>[doc] Fixed a description of <a class="reference internal" href="../reference/commands/table_remove.html"><em>table_remove</em></a> command.</li>
|
404
|
+
<li>Fixed infinite loop problem for not implemented operator without index.
|
405
|
+
[GitHub#20]</li>
|
406
|
+
<li>Fixed a wrong error code which causes memory leaks.</li>
|
407
|
+
<li>Fixed a wrong error code which collapse ja columns.</li>
|
408
|
+
<li>[admin] Fixed to escape error message.</li>
|
409
|
+
<li>Fixed to ignore unloadable objects which causes database incompatible.
|
410
|
+
[#1429] [Reported by IWAI, Masaharu]</li>
|
411
|
+
</ul>
|
412
|
+
</div>
|
413
|
+
<div class="section" id="id19">
|
414
|
+
<h2>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
|
415
|
+
<ul class="simple">
|
416
|
+
<li>SHIMADA Koji</li>
|
417
|
+
<li>IWAI, Masaharu</li>
|
418
|
+
</ul>
|
419
|
+
</div>
|
420
|
+
</div>
|
421
|
+
<div class="section" id="release-2-0-4-2012-06-29">
|
422
|
+
<span id="release-2-0-4"></span><h1>Release 2.0.4 - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="Permalink to this headline">¶</a></h1>
|
423
|
+
<div class="section" id="id20">
|
424
|
+
<h2>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h2>
|
425
|
+
<ul class="simple">
|
426
|
+
<li>Supported only KyTea 0.4.2.</li>
|
427
|
+
<li>Dropped KyTea 0.4.1 or ealier support.</li>
|
428
|
+
<li>[experimental] Supported nginx based groonga HTTP interface.</li>
|
429
|
+
<li>Supported calculating the value of distance with "rect" or "rectangle"
|
430
|
+
argument in northern hemisphere. [#1386] [#1387] [#1388] [#1389]</li>
|
431
|
+
<li>[doc] Added a document about <a class="reference internal" href="../development/travis-ci.html"><em>Travis CI</em></a> integration.</li>
|
432
|
+
<li>[doc] Added descriptions about full text search and phrase search.
|
433
|
+
See <a class="reference internal" href="../reference/grn_expr/query_syntax.html#full-text-search-condition"><em>Full text search condition</em></a> and <a class="reference internal" href="../reference/grn_expr/query_syntax.html#phrase-search-condition"><em>Phrase search condition</em></a>
|
434
|
+
about detail.</li>
|
435
|
+
<li>[doc] Added descriptions about comparison conditions.
|
436
|
+
See <a class="reference internal" href="../reference/grn_expr/query_syntax.html#conditional-expression"><em>Conditional expression</em></a> about detail.</li>
|
437
|
+
<li>[doc] Added examples for <a class="reference internal" href="../reference/grn_expr/query_syntax.html"><em>Query syntax</em></a>.</li>
|
438
|
+
<li>[doc] Added descriptions about <a class="reference internal" href="../reference/grn_expr/query_syntax.html#combined-expression"><em>Combined expression</em></a>.</li>
|
439
|
+
<li>[doc] Added descriptions about <a class="reference internal" href="../reference/grn_expr/query_syntax.html#prefix-search-condition"><em>Prefix search condition</em></a> and
|
440
|
+
<a class="reference internal" href="../reference/grn_expr/query_syntax.html#suffix-search-condition"><em>Suffix search condition</em></a>.</li>
|
441
|
+
<li>Supported suffix search by index.</li>
|
442
|
+
<li>[doc] Added a document about <a class="reference internal" href="../reference/grn_expr.html"><em>grn_expr</em></a>.</li>
|
443
|
+
<li>[munin] Supported JSON library installed by RubyGems [GitHub#17]
|
444
|
+
[Patch by IWAI, Masaharu]</li>
|
445
|
+
<li>[doc] Updated the description of how to specify a value as Time in tutorial.
|
446
|
+
[#1405] [Reported by IWAI, Masaharu]</li>
|
447
|
+
<li>[rpm] Removed groonga-tokenizer-mecab dependency from groonga package.
|
448
|
+
[GitHub#18] [Patch by IWAI, Masaharu]</li>
|
449
|
+
</ul>
|
450
|
+
</div>
|
451
|
+
<div class="section" id="id21">
|
452
|
+
<h2>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h2>
|
453
|
+
<ul class="simple">
|
454
|
+
<li>Fixed a problem that display of command prompt changes to not intended state
|
455
|
+
by using batch mode on Mac OS X.
|
456
|
+
[Reported by @soundkitchen]</li>
|
457
|
+
<li>Fixed not to terminate after an invalid command in client mode. [#1305]</li>
|
458
|
+
<li>Fixed a problem that '=R' is treated as 'OR' in <tt class="docutils literal"><span class="pre">--query</span></tt> syntax. [#1393]</li>
|
459
|
+
</ul>
|
460
|
+
</div>
|
461
|
+
<div class="section" id="id22">
|
462
|
+
<h2>Thanks<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
|
463
|
+
<ul class="simple">
|
464
|
+
<li>@soundkitchen</li>
|
465
|
+
<li>IWAI, Masaharu</li>
|
466
|
+
</ul>
|
467
|
+
</div>
|
468
|
+
</div>
|
469
|
+
<div class="section" id="release-2-0-3-2012-05-29">
|
470
|
+
<span id="release-2-0-3"></span><h1>Release 2.0.3 - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="Permalink to this headline">¶</a></h1>
|
471
|
+
<div class="section" id="id23">
|
472
|
+
<h2>Improvements<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h2>
|
473
|
+
<ul class="simple">
|
474
|
+
<li>[doc] Added about release procedure.</li>
|
475
|
+
<li>Removed restriction that the max number of opened files is 4096.</li>
|
476
|
+
<li>[experimental] Added table plugin.</li>
|
477
|
+
<li>[doc] Added more descriptions about <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> command.</li>
|
478
|
+
<li>[doc] Made execution example copy & paste friendly.</li>
|
479
|
+
<li>[windows] Supported build with Visual Studio 2010 Express and
|
480
|
+
CMake. See <a class="reference internal" href="../install/windows.html"><em>Windows</em></a> about details.</li>
|
481
|
+
<li>[doc][solaris] Added a document about building on Solaris.
|
482
|
+
See <a class="reference internal" href="../install/solaris.html"><em>Oracle Solaris</em></a> about details.</li>
|
483
|
+
<li>[doc][yum] Updated epel-release package version.
|
484
|
+
[Reported by IWAI, Masaharu]</li>
|
485
|
+
<li>[doc][cenos6] Disabled Repoforge for Munin for CentOS 6.
|
486
|
+
[Reported by IWAI, Masaharu]</li>
|
487
|
+
<li>Started distributing source archive in zip format.</li>
|
488
|
+
<li>[munin] groonga_dist Munin plugin supported an object that has
|
489
|
+
separated files.</li>
|
490
|
+
<li>Started using Travis CI.</li>
|
491
|
+
<li>[yum] Changed RPM package name that provides yum repository from
|
492
|
+
groonga-repository to groonga-release to follow RPM package name
|
493
|
+
convension such as centos-release and fedora-release.</li>
|
494
|
+
</ul>
|
495
|
+
</div>
|
496
|
+
<div class="section" id="id24">
|
497
|
+
<h2>Fixes<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h2>
|
498
|
+
<ul class="simple">
|
499
|
+
<li>[doc] Fixed a command to update yum repository.
|
500
|
+
[Suggested by IWAI, Masaharu]</li>
|
501
|
+
<li>[deb] Fixed a bug that log_repoen command in logrotate uses wrong protocol.</li>
|
502
|
+
<li>Fixed broken ERROR tag in XML response.
|
503
|
+
[#1363] [GitHub#13] [Patch by IWAI, Masaharu]</li>
|
504
|
+
<li>Fixed a bug that grn_ctx isn't fully cleared by grn_ctx_fin().</li>
|
505
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">&!</span></tt> set operation doesn't work with grouped
|
506
|
+
expression. [#1372]</li>
|
507
|
+
<li>Fixed a bug that a record key registered via index source isn't normalized.</li>
|
508
|
+
</ul>
|
509
|
+
</div>
|
510
|
+
<div class="section" id="id25">
|
511
|
+
<h2>Thanks<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h2>
|
512
|
+
<ul class="simple">
|
513
|
+
<li>IWAI, Masaharu</li>
|
514
|
+
</ul>
|
515
|
+
</div>
|
516
|
+
</div>
|
517
|
+
<div class="section" id="release-2-0-2-2012-04-29">
|
518
|
+
<span id="release-2-0-2"></span><h1>Release 2.0.2 - 2012/04/29<a class="headerlink" href="#release-2-0-2-2012-04-29" title="Permalink to this headline">¶</a></h1>
|
519
|
+
<div class="admonition caution">
|
520
|
+
<p class="first admonition-title">Caution</p>
|
521
|
+
<p>The package sign key is changed since this release. Import the new
|
522
|
+
package sign key before updating groogna packages.</p>
|
523
|
+
<p>Debian/Ubuntu:</p>
|
524
|
+
<div class="highlight-none"><div class="highlight"><pre>% sudo apt-get update
|
525
|
+
% sudo apt-get -y --allow-unauthenticated install groonga-keyring
|
526
|
+
</pre></div>
|
527
|
+
</div>
|
528
|
+
<p>CentOS/Fedora:</p>
|
529
|
+
<div class="last highlight-none"><div class="highlight"><pre>% sudo yum makecache
|
530
|
+
% sudo yum install --nogpgcheck -y groonga-repository
|
531
|
+
</pre></div>
|
532
|
+
</div>
|
533
|
+
</div>
|
534
|
+
<div class="section" id="id26">
|
535
|
+
<h2>Improvements<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h2>
|
536
|
+
<ul class="simple">
|
537
|
+
<li>[pkg-config] Removed needless MessagePack dependency.</li>
|
538
|
+
<li>[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]</li>
|
539
|
+
<li>[rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]</li>
|
540
|
+
<li>[groonga] Improved daemoinzed timing. Groonga server daemonizes
|
541
|
+
after socket is listened. It means that groonga server is ready when
|
542
|
+
groonga server is daemonized. [#1326]</li>
|
543
|
+
<li>[admin] Supported suggest in groonga administration page.</li>
|
544
|
+
<li>[dump] Ignored MeCab tokenizer load error.</li>
|
545
|
+
<li>Supported CMake.</li>
|
546
|
+
<li>[load] Supported error report when a column value can't be set.</li>
|
547
|
+
<li>Supported similar search. <tt class="docutils literal"><span class="pre">select</span> <span class="pre">--filter</span> <span class="pre">"column</span> <span class="pre">*S</span> <span class="pre">'TEXT'"</span></tt>
|
548
|
+
is the similar search syntax. [#1342]</li>
|
549
|
+
<li>[apt][yum] Changed package sign key.</li>
|
550
|
+
<li>Supported Ubuntu Precise Pangolin.</li>
|
551
|
+
<li>[apt] Added a new groonga-keyring deb package for the groonga's
|
552
|
+
package sign key.</li>
|
553
|
+
</ul>
|
554
|
+
</div>
|
555
|
+
<div class="section" id="id27">
|
556
|
+
<h2>Fixes<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h2>
|
557
|
+
<ul class="simple">
|
558
|
+
<li>[deb][rpm] Used <tt class="docutils literal"><span class="pre">--bind-address</span></tt> option instead of deprecated
|
559
|
+
<tt class="docutils literal"><span class="pre">--address</span></tt> option.
|
560
|
+
[#1320] [Patch by IWAI, Masaharu]</li>
|
561
|
+
<li>[deb] Renamed groonga-server package's configuration file to
|
562
|
+
/etc/default/groonga-server from /etc/default/groonga.</li>
|
563
|
+
<li>[rpm][fedora] Fixed upgrade condition in %post server.
|
564
|
+
[GitHub#11] [Patch by Daiki Ueno]</li>
|
565
|
+
<li>[rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]</li>
|
566
|
+
<li>[deb][rpm] Added missing curl dependency.
|
567
|
+
[GitHub#12] [Patch by IWAI, Masaharu]</li>
|
568
|
+
<li>[rpm] Removed needleess ruby package dependency from groonga package.
|
569
|
+
[#1330] [Suggested by IWAI, Masaharu]</li>
|
570
|
+
<li>[deb] Added missing default values to groonga-server's
|
571
|
+
configuration file.</li>
|
572
|
+
<li>Fixed a crash bug that is caused when searching with updaging very large
|
573
|
+
inverted index. [#1329]</li>
|
574
|
+
<li>Fixed a bug that strings are compared as characters instead of byte string.
|
575
|
+
[#1340] [Reported by Shinya Kawaji]</li>
|
576
|
+
</ul>
|
577
|
+
</div>
|
578
|
+
<div class="section" id="id28">
|
579
|
+
<h2>Thanks<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h2>
|
580
|
+
<ul class="simple">
|
581
|
+
<li>IWAI, Masaharu</li>
|
582
|
+
<li>Daiki Ueno</li>
|
583
|
+
<li>Shinya Kawaji</li>
|
584
|
+
</ul>
|
585
|
+
</div>
|
586
|
+
</div>
|
587
|
+
<div class="section" id="release-2-0-1-2012-03-29">
|
588
|
+
<span id="release-2-0-1"></span><h1>Release 2.0.1 - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="Permalink to this headline">¶</a></h1>
|
589
|
+
<div class="section" id="id29">
|
590
|
+
<h2>Improvements<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h2>
|
591
|
+
<ul class="simple">
|
592
|
+
<li>Supported build in other directory.
|
593
|
+
[#1298] [Reported by Kazuhiko]</li>
|
594
|
+
<li>[solaris] Supported build on Solaris 11. [Reported by Kazuhiko]</li>
|
595
|
+
<li>[test] Supported functional test.</li>
|
596
|
+
<li>[test] Required <tt class="docutils literal"><span class="pre">--with-ruby19</span></tt> configure option for testing by Ruby.</li>
|
597
|
+
<li>[dump] Supported records dump for a table that has default tokenizer.</li>
|
598
|
+
<li>[suggest] Added <tt class="docutils literal"><span class="pre">similar_search</span></tt> option.</li>
|
599
|
+
<li>[groonga] Removed deprecated options, <tt class="docutils literal"><span class="pre">-a</span></tt>, <tt class="docutils literal"><span class="pre">--address</span></tt> and
|
600
|
+
<tt class="docutils literal"><span class="pre">--admin-html-path</span></tt>.</li>
|
601
|
+
<li>Added more return value checks. [GitHub#9] [Reported by Markus Elfring]</li>
|
602
|
+
<li>[dat] Supported term extract operation.</li>
|
603
|
+
<li>Added <a class="reference external" href="http://groonga.org/logo/">logos</a> .</li>
|
604
|
+
<li>Updated HTML design.</li>
|
605
|
+
<li>Renamed <tt class="docutils literal"><span class="pre">grntest</span></tt> to <tt class="docutils literal"><span class="pre">groonga-benchmark</span></tt>.</li>
|
606
|
+
<li>Supported <tt class="docutils literal"><span class="pre">autogen.sh</span></tt> on CentOS 5.</li>
|
607
|
+
<li>[linux] Added <tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> kernel parameter value
|
608
|
+
check. [#1289]</li>
|
609
|
+
<li><tt class="docutils literal"><span class="pre">grn_snip</span></tt> uses <tt class="docutils literal"><span class="pre">grn_obj</span></tt> mechanism. [#1054]</li>
|
610
|
+
</ul>
|
611
|
+
</div>
|
612
|
+
<div class="section" id="id30">
|
613
|
+
<h2>Fixes<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h2>
|
614
|
+
<ul class="simple">
|
615
|
+
<li>Fixed a bug that uninstall task doesn't uninstall installed Ruby
|
616
|
+
scripts. [#1299] [Reported by Kazuhiko]</li>
|
617
|
+
<li>Added a missing Gemfile. [#1302] [Reported by Kazuhiko]</li>
|
618
|
+
<li>Fixed a bug that some indexed records aren't found. The feature is
|
619
|
+
only used by mroonga. [#1303]</li>
|
620
|
+
<li>[groonga] Appended missing <tt class="docutils literal"><span class="pre">-id</span></tt> to <tt class="docutils literal"><span class="pre">--server-id</span></tt> option name.</li>
|
621
|
+
<li>Fixed a bug that latin1 normalization may access unexpected memory.</li>
|
622
|
+
</ul>
|
623
|
+
</div>
|
624
|
+
<div class="section" id="id31">
|
625
|
+
<h2>Thanks<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h2>
|
626
|
+
<ul class="simple">
|
627
|
+
<li>Kazuhiko</li>
|
628
|
+
<li>Markus Elfring</li>
|
629
|
+
</ul>
|
630
|
+
</div>
|
631
|
+
</div>
|
632
|
+
<div class="section" id="release-2-0-0-2012-02-29">
|
633
|
+
<span id="release-2-0-0"></span><h1>Release 2.0.0 - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="Permalink to this headline">¶</a></h1>
|
634
|
+
<div class="section" id="id32">
|
635
|
+
<h2>Improvements<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h2>
|
636
|
+
<ul class="simple">
|
637
|
+
<li>[dat] Added 0 length key check.</li>
|
638
|
+
<li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
|
639
|
+
[Reported by Suzuki]</li>
|
640
|
+
<li>[php] Supported PHP 5.4. [Patch by Daiki Ueno]</li>
|
641
|
+
<li>Updated FSF address. [Suggested by Daiki Ueno]</li>
|
642
|
+
<li>[fedora] Supported systemd. [Patch by Daiki Ueno]</li>
|
643
|
+
<li>[rpm][debian] Changed the default protocol to HTTP from gqtp.</li>
|
644
|
+
<li>[rpm][centos] Supported status command.</li>
|
645
|
+
<li>Removed needless <tt class="docutils literal"><span class="pre">:</span></tt> from log message.</li>
|
646
|
+
<li>Removed deprecated grn_query. [#1247]</li>
|
647
|
+
<li>Reduced needless grn_ctx_at() calls on creating table.</li>
|
648
|
+
<li>[pat] Supported cache.</li>
|
649
|
+
<li>[tokenizer] Improved tokenizer API.</li>
|
650
|
+
<li>Accepted <tt class="docutils literal"><span class="pre">@</span></tt> as a valid name character.</li>
|
651
|
+
<li>[tokenizer] Added a tokenizer based on
|
652
|
+
<a class="reference external" href="http://www.phontron.com/kytea/">KyTea</a>.</li>
|
653
|
+
<li>Supported <a class="reference internal" href="../reference/indexing.html"><em>offline index construction</em></a>.</li>
|
654
|
+
<li>[tokenizer] Supported MeCab 0.993. [groonga-dev,00703]
|
655
|
+
[Reported by Masaharu YOSHIOKA]</li>
|
656
|
+
<li>[windows] Supported MessagePack.</li>
|
657
|
+
</ul>
|
658
|
+
</div>
|
659
|
+
<div class="section" id="id33">
|
660
|
+
<h2>Fixes<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h2>
|
661
|
+
<ul class="simple">
|
662
|
+
<li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
|
663
|
+
<li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
|
664
|
+
<li>[doc] Fixed wrong the default value. [Reported by @naoina]</li>
|
665
|
+
<li>Fixed a typo. [Reported by Kazuhiko]</li>
|
666
|
+
<li>[http] Fixed a bug that <tt class="docutils literal"><span class="pre">load</span></tt> command error isn't cleared.
|
667
|
+
[Reported by @wareohji]</li>
|
668
|
+
</ul>
|
669
|
+
</div>
|
670
|
+
<div class="section" id="id34">
|
671
|
+
<h2>Thanks<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h2>
|
672
|
+
<ul class="simple">
|
673
|
+
<li>Suzuki</li>
|
674
|
+
<li>Daiki Ueno</li>
|
675
|
+
<li>@naoina</li>
|
676
|
+
<li>Kazuhiko</li>
|
677
|
+
<li>Masaharu YOSHIOKA</li>
|
678
|
+
<li>@wareohji</li>
|
679
|
+
</ul>
|
680
|
+
</div>
|
681
|
+
</div>
|
682
|
+
|
683
|
+
|
684
|
+
</div>
|
685
|
+
</div>
|
686
|
+
</div>
|
687
|
+
<div class="sphinxsidebar">
|
688
|
+
<div class="sphinxsidebarwrapper">
|
689
|
+
<h3><a href="../index.html">Table Of Contents</a></h3>
|
690
|
+
<ul>
|
691
|
+
<li><a class="reference internal" href="#">Release 2.1.2 - 2013/01/29</a><ul>
|
692
|
+
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
693
|
+
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
694
|
+
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
695
|
+
</ul>
|
696
|
+
</li>
|
697
|
+
<li><a class="reference internal" href="#release-2-1-1-2012-12-29">Release 2.1.1 - 2012/12/29</a><ul>
|
698
|
+
<li><a class="reference internal" href="#id1">Fixes</a></li>
|
699
|
+
</ul>
|
700
|
+
</li>
|
701
|
+
<li><a class="reference internal" href="#release-2-1-0-2012-12-29">Release 2.1.0 - 2012/12/29</a><ul>
|
702
|
+
<li><a class="reference internal" href="#id2">Improvements</a></li>
|
703
|
+
<li><a class="reference internal" href="#id3">Fixes</a></li>
|
704
|
+
<li><a class="reference internal" href="#id4">Thanks</a></li>
|
705
|
+
</ul>
|
706
|
+
</li>
|
707
|
+
<li><a class="reference internal" href="#release-2-0-9-2012-11-29">Release 2.0.9 - 2012/11/29</a><ul>
|
708
|
+
<li><a class="reference internal" href="#id5">Improvements</a></li>
|
709
|
+
<li><a class="reference internal" href="#id6">Fixes</a></li>
|
710
|
+
<li><a class="reference internal" href="#id7">Thanks</a></li>
|
711
|
+
</ul>
|
712
|
+
</li>
|
713
|
+
<li><a class="reference internal" href="#release-2-0-8-2012-10-29">Release 2.0.8 - 2012/10/29</a><ul>
|
714
|
+
<li><a class="reference internal" href="#id8">Improvements</a></li>
|
715
|
+
<li><a class="reference internal" href="#id9">Fixes</a></li>
|
716
|
+
<li><a class="reference internal" href="#id10">Thanks</a></li>
|
717
|
+
</ul>
|
718
|
+
</li>
|
719
|
+
<li><a class="reference internal" href="#release-2-0-7-2012-09-29">Release 2.0.7 - 2012/09/29</a><ul>
|
720
|
+
<li><a class="reference internal" href="#id11">Improvements</a></li>
|
721
|
+
<li><a class="reference internal" href="#id12">Fixes</a></li>
|
722
|
+
<li><a class="reference internal" href="#id13">Thanks</a></li>
|
723
|
+
</ul>
|
724
|
+
</li>
|
725
|
+
<li><a class="reference internal" href="#release-2-0-6-2012-08-29">Release 2.0.6 - 2012/08/29</a><ul>
|
726
|
+
<li><a class="reference internal" href="#id14">Improvements</a></li>
|
727
|
+
<li><a class="reference internal" href="#id15">Fixes</a></li>
|
728
|
+
<li><a class="reference internal" href="#id16">Thanks</a></li>
|
729
|
+
</ul>
|
730
|
+
</li>
|
731
|
+
<li><a class="reference internal" href="#release-2-0-5-2012-07-29">Release 2.0.5 - 2012/07/29</a><ul>
|
732
|
+
<li><a class="reference internal" href="#id17">Improvements</a></li>
|
733
|
+
<li><a class="reference internal" href="#id18">Fixes</a></li>
|
734
|
+
<li><a class="reference internal" href="#id19">Thanks</a></li>
|
735
|
+
</ul>
|
736
|
+
</li>
|
737
|
+
<li><a class="reference internal" href="#release-2-0-4-2012-06-29">Release 2.0.4 - 2012/06/29</a><ul>
|
738
|
+
<li><a class="reference internal" href="#id20">Improvements</a></li>
|
739
|
+
<li><a class="reference internal" href="#id21">Fixes</a></li>
|
740
|
+
<li><a class="reference internal" href="#id22">Thanks</a></li>
|
741
|
+
</ul>
|
742
|
+
</li>
|
743
|
+
<li><a class="reference internal" href="#release-2-0-3-2012-05-29">Release 2.0.3 - 2012/05/29</a><ul>
|
744
|
+
<li><a class="reference internal" href="#id23">Improvements</a></li>
|
745
|
+
<li><a class="reference internal" href="#id24">Fixes</a></li>
|
746
|
+
<li><a class="reference internal" href="#id25">Thanks</a></li>
|
747
|
+
</ul>
|
748
|
+
</li>
|
749
|
+
<li><a class="reference internal" href="#release-2-0-2-2012-04-29">Release 2.0.2 - 2012/04/29</a><ul>
|
750
|
+
<li><a class="reference internal" href="#id26">Improvements</a></li>
|
751
|
+
<li><a class="reference internal" href="#id27">Fixes</a></li>
|
752
|
+
<li><a class="reference internal" href="#id28">Thanks</a></li>
|
753
|
+
</ul>
|
754
|
+
</li>
|
755
|
+
<li><a class="reference internal" href="#release-2-0-1-2012-03-29">Release 2.0.1 - 2012/03/29</a><ul>
|
756
|
+
<li><a class="reference internal" href="#id29">Improvements</a></li>
|
757
|
+
<li><a class="reference internal" href="#id30">Fixes</a></li>
|
758
|
+
<li><a class="reference internal" href="#id31">Thanks</a></li>
|
759
|
+
</ul>
|
760
|
+
</li>
|
761
|
+
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
|
762
|
+
<li><a class="reference internal" href="#id32">Improvements</a></li>
|
763
|
+
<li><a class="reference internal" href="#id33">Fixes</a></li>
|
764
|
+
<li><a class="reference internal" href="#id34">Thanks</a></li>
|
765
|
+
</ul>
|
766
|
+
</li>
|
767
|
+
</ul>
|
768
|
+
|
769
|
+
<h3>This Page</h3>
|
770
|
+
<ul class="this-page-menu">
|
771
|
+
<li><a href="../_sources/news/2.x.txt"
|
772
|
+
rel="nofollow">Show Source</a></li>
|
773
|
+
</ul>
|
774
|
+
<div id="searchbox" style="display: none">
|
775
|
+
<h3>Quick search</h3>
|
776
|
+
<form class="search" action="../search.html" method="get">
|
777
|
+
<input type="text" name="q" />
|
778
|
+
<input type="submit" value="Go" />
|
779
|
+
<input type="hidden" name="check_keywords" value="yes" />
|
780
|
+
<input type="hidden" name="area" value="default" />
|
781
|
+
</form>
|
782
|
+
<p class="searchtip" style="font-size: 90%">
|
783
|
+
Enter search terms or a module, class or function name.
|
784
|
+
</p>
|
785
|
+
</div>
|
786
|
+
<script type="text/javascript">$('#searchbox').show(0);</script>
|
787
|
+
</div>
|
788
|
+
</div>
|
789
|
+
<div class="clearer"></div>
|
790
|
+
</div>
|
791
|
+
<div class="related">
|
792
|
+
<h3>Navigation</h3>
|
793
|
+
<ul>
|
794
|
+
<li class="right" style="margin-right: 10px">
|
795
|
+
<a href="../genindex.html" title="General Index"
|
796
|
+
>index</a></li>
|
797
|
+
<li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> »</li>
|
798
|
+
</ul>
|
799
|
+
</div>
|
800
|
+
<div class="footer">
|
801
|
+
© Copyright 2009-2014, Brazil, Inc.
|
802
|
+
</div>
|
803
|
+
</body>
|
804
|
+
</html>
|