rroonga 4.0.3-x86-mingw32 → 4.0.4-x86-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.rb +1 -1
- data/lib/groonga/column.rb +1 -1
- data/lib/groonga/context.rb +1 -1
- data/lib/groonga/context/command-executor.rb +1 -1
- data/lib/groonga/database-inspector.rb +1 -1
- data/lib/groonga/database.rb +1 -1
- data/lib/groonga/dumper.rb +1 -1
- data/lib/groonga/expression-builder-19.rb +1 -1
- data/lib/groonga/expression-builder.rb +1 -1
- data/lib/groonga/geo-point.rb +1 -1
- data/lib/groonga/grntest-log.rb +1 -1
- data/lib/groonga/index-column.rb +1 -1
- data/lib/groonga/logger.rb +1 -1
- data/lib/groonga/memory-pool.rb +1 -2
- data/lib/groonga/pagination.rb +1 -1
- data/lib/groonga/patricia-trie.rb +1 -1
- data/lib/groonga/posting.rb +1 -1
- data/lib/groonga/query-logger.rb +1 -1
- data/lib/groonga/record.rb +6 -2
- data/lib/groonga/schema.rb +1 -1
- data/lib/groonga/statistic-measurer.rb +1 -1
- data/lib/groonga/sub-records.rb +1 -1
- data/lib/groonga/table.rb +1 -1
- data/misc/grnop2ruby.rb +1 -1
- data/rroonga-build.rb +4 -4
- data/rroonga.gemspec +3 -3
- data/test/groonga-test-utils.rb +4 -4
- data/test/run-test.rb +1 -1
- data/test/test-accessor.rb +1 -1
- data/test/test-array.rb +1 -1
- data/test/test-column.rb +1 -1
- data/test/test-command-select.rb +1 -1
- data/test/test-context.rb +21 -16
- data/test/test-convert.rb +1 -1
- data/test/test-database-dumper.rb +1 -1
- data/test/test-database-inspector.rb +1 -1
- data/test/test-database.rb +38 -25
- data/test/test-double-array-trie.rb +1 -1
- data/test/test-encoding.rb +1 -1
- data/test/test-exception.rb +12 -7
- data/test/test-expression-builder.rb +1 -1
- data/test/test-expression.rb +1 -1
- data/test/test-fix-size-column.rb +1 -1
- data/test/test-geo-point.rb +1 -1
- data/test/test-gqtp.rb +1 -1
- data/test/test-hash.rb +1 -1
- data/test/test-index-column.rb +1 -1
- data/test/test-index-cursor.rb +1 -1
- data/test/test-lock-timeout.rb +1 -1
- data/test/test-logger.rb +1 -1
- data/test/test-memory-pool.rb +1 -1
- data/test/test-normalizer.rb +1 -1
- data/test/test-pagination.rb +1 -1
- data/test/test-patricia-trie.rb +1 -1
- data/test/test-plugin.rb +1 -1
- data/test/test-procedure.rb +9 -2
- data/test/test-record.rb +1 -1
- data/test/test-remote.rb +1 -1
- data/test/test-schema-create-table.rb +1 -1
- data/test/test-schema-dumper.rb +1 -1
- data/test/test-schema-type.rb +1 -1
- data/test/test-schema.rb +1 -1
- data/test/test-snippet.rb +1 -1
- data/test/test-statistic-measurer.rb +1 -1
- data/test/test-sub-records.rb +1 -1
- data/test/test-table-dumper.rb +1 -1
- data/test/test-table-key-support.rb +1 -1
- data/test/test-table-offset-and-limit.rb +1 -1
- data/test/test-table-select-mecab.rb +1 -1
- data/test/test-table-select-normalize.rb +1 -1
- data/test/test-table-select-weight.rb +1 -1
- data/test/test-table-select.rb +1 -1
- data/test/test-table-traverse.rb +1 -1
- data/test/test-table.rb +1 -1
- data/test/test-type.rb +1 -1
- data/test/test-variable-size-column.rb +136 -67
- data/test/test-variable.rb +1 -1
- data/test/test-vector-column.rb +1 -1
- data/test/test-version.rb +1 -1
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/mecab-config +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +38 -5
- data/vendor/local/include/groonga/groonga/plugin.h +11 -83
- data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
- data/vendor/local/include/msgpack.h +1 -0
- data/vendor/local/include/msgpack/fbuffer.h +47 -0
- data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
- data/vendor/local/include/msgpack/object.hpp +12 -3
- data/vendor/local/include/msgpack/pack.h +7 -3
- data/vendor/local/include/msgpack/pack.hpp +26 -7
- data/vendor/local/include/msgpack/pack_template.h +34 -7
- data/vendor/local/include/msgpack/sbuffer.h +3 -2
- data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
- data/vendor/local/include/msgpack/sysdep.h +27 -14
- data/vendor/local/include/msgpack/type.hpp +2 -1
- data/vendor/local/include/msgpack/type/define.hpp +747 -561
- data/vendor/local/include/msgpack/type/float.hpp +24 -4
- data/vendor/local/include/msgpack/type/int.hpp +78 -13
- data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
- data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
- data/vendor/local/include/msgpack/unpack.h +9 -9
- data/vendor/local/include/msgpack/unpack_define.h +16 -14
- data/vendor/local/include/msgpack/unpack_template.h +19 -8
- data/vendor/local/include/msgpack/version.h +1 -1
- data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
- data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
- data/vendor/local/include/msgpack/zbuffer.h +3 -2
- data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
- data/vendor/local/include/msgpack/zone.h +5 -4
- data/vendor/local/include/msgpack/zone.hpp +10 -1
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +1 -1
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +1 -1
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
- data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
- data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
- data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
- data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
- data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
- data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
- data/vendor/local/share/groonga/html/admin/index.html +75 -75
- data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
- data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
- data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
- data/vendor/local/share/license/groonga/README.md +49 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
- data/vendor/local/share/man/man1/groonga.1 +2008 -1240
- metadata +111 -83
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
- data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
- data/vendor/local/share/license/groonga/AUTHORS +0 -17
@@ -11,10 +11,10 @@ pluginsdir=${libdir}/groonga/plugins
|
|
11
11
|
groonga=${bindir}/groonga.exe
|
12
12
|
groonga_httpd=${sbindir}/groonga-httpd.exe
|
13
13
|
groonga_suggest_create_dataset=${bindir}/groonga-suggest-create-dataset.exe
|
14
|
-
groonga_version=4.0.
|
14
|
+
groonga_version=4.0.5
|
15
15
|
|
16
16
|
Name: Groonga
|
17
17
|
Description: An Embeddable Fulltext Search Engine
|
18
|
-
Version: 4.0.
|
18
|
+
Version: 4.0.5
|
19
19
|
Libs: -L${libdir} -lgroonga
|
20
20
|
Cflags: -I${includedir}/groonga
|
@@ -0,0 +1,10 @@
|
|
1
|
+
prefix=/home/kou/work/c/groonga.clean/packages/windows/dist-x86
|
2
|
+
exec_prefix=${prefix}
|
3
|
+
libdir=${exec_prefix}/lib
|
4
|
+
includedir=${prefix}/include
|
5
|
+
|
6
|
+
Name: MessagePack
|
7
|
+
Description: Binary-based efficient object serialization library
|
8
|
+
Version: 0.5.9
|
9
|
+
Libs: -L${libdir} -lmsgpack
|
10
|
+
Cflags: -I${includedir}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
@@ -1,4 +1,4 @@
|
|
1
1
|
# Sphinx build info version 1
|
2
2
|
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
3
|
-
config:
|
3
|
+
config: 3aa209e1a7a5adf5eb57cf5c7e89046b
|
4
4
|
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
@@ -154,9 +154,7 @@ Now you can send pull request on GitHub. You just access
|
|
154
154
|
your repository page on GitHub and press `Pull Request`
|
155
155
|
button.
|
156
156
|
|
157
|
-
.. seealso:: `Help.GitHub - Sending pull requests
|
158
|
-
|
159
|
-
.. _Help.GitHub - Sending pull requests: http://help.github.com/pull-requests/
|
157
|
+
.. seealso:: `Help.GitHub - Sending pull requests <http://help.github.com/pull-requests/>`_.
|
160
158
|
|
161
159
|
How to send patch
|
162
160
|
+++++++++++++++++
|
@@ -193,6 +191,4 @@ Here are command lines to add new translation language::
|
|
193
191
|
Please substitute `${LANGUAGE}` with your language code such
|
194
192
|
as 'ja'.
|
195
193
|
|
196
|
-
.. seealso:: `Codes for the Representation of Names of Languages
|
197
|
-
|
198
|
-
.. _Codes for the Representation of Names of Languages: http://www.loc.gov/standards/iso639-2/php/English_list.php
|
194
|
+
.. seealso:: `Codes for the Representation of Names of Languages <http://www.loc.gov/standards/iso639-2/php/English_list.php>`_.
|
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
|
|
14
14
|
memory error with a 32-bit package even if you just process medium
|
15
15
|
size data.
|
16
16
|
|
17
|
-
.. include:: server-use.inc
|
18
|
-
|
19
17
|
CentOS 5
|
20
18
|
--------
|
21
19
|
|
@@ -25,6 +23,8 @@ Install::
|
|
25
23
|
% sudo yum makecache
|
26
24
|
% sudo yum install -y groonga
|
27
25
|
|
26
|
+
.. include:: server-use.inc
|
27
|
+
|
28
28
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
29
29
|
tokenizer, install groonga-tokenizer-mecab package.
|
30
30
|
|
@@ -32,17 +32,6 @@ Install groonga-tokenizer-mecab package::
|
|
32
32
|
|
33
33
|
% sudo yum install -y groonga-tokenizer-mecab
|
34
34
|
|
35
|
-
Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)
|
36
|
-
|
37
|
-
Install IPA dictionary::
|
38
|
-
|
39
|
-
% sudo yum install -y mecab-ipadic
|
40
|
-
|
41
|
-
Or install Juman dictionary::
|
42
|
-
|
43
|
-
% sudo yum install -y mecab-jumandic
|
44
|
-
|
45
|
-
|
46
35
|
There is a package that provides `Munin
|
47
36
|
<http://munin-monitoring.org/>`_ plugins. If you want to monitor
|
48
37
|
Groonga status by Munin, install groonga-munin-plugins package.
|
@@ -91,6 +80,8 @@ Install::
|
|
91
80
|
% sudo yum makecache
|
92
81
|
% sudo yum install -y groonga
|
93
82
|
|
83
|
+
.. include:: server-use.inc
|
84
|
+
|
94
85
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
95
86
|
tokenizer, install groonga-tokenizer-mecab package.
|
96
87
|
|
@@ -98,16 +89,6 @@ Install groonga-tokenizer-mecab package::
|
|
98
89
|
|
99
90
|
% sudo yum install -y groonga-tokenizer-mecab
|
100
91
|
|
101
|
-
Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)
|
102
|
-
|
103
|
-
Install IPA dictionary::
|
104
|
-
|
105
|
-
% sudo yum install -y mecab-ipadic
|
106
|
-
|
107
|
-
Or install Juman dictionary::
|
108
|
-
|
109
|
-
% sudo yum install -y mecab-jumandic
|
110
|
-
|
111
92
|
There is a package that provides `Munin
|
112
93
|
<http://munin-monitoring.org/>`_ plugins. If you want to monitor
|
113
94
|
Groonga status by Munin, install groonga-munin-plugins package.
|
@@ -153,9 +134,9 @@ Install required packages to build Groonga::
|
|
153
134
|
|
154
135
|
Download source::
|
155
136
|
|
156
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
157
|
-
% tar xvzf groonga-4.0.
|
158
|
-
% cd groonga-4.0.
|
137
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
138
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
139
|
+
% cd groonga-4.0.5
|
159
140
|
|
160
141
|
Configure (see :ref:`source-configure` about ``configure`` options)::
|
161
142
|
|
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
|
|
14
14
|
memory error with a 32-bit package even if you just process medium
|
15
15
|
size data.
|
16
16
|
|
17
|
-
.. include:: server-use.inc
|
18
|
-
|
19
17
|
wheezy
|
20
18
|
------
|
21
19
|
|
@@ -33,6 +31,8 @@ Install::
|
|
33
31
|
% sudo apt-get update
|
34
32
|
% sudo apt-get install -y -V groonga
|
35
33
|
|
34
|
+
.. include:: server-use.inc
|
35
|
+
|
36
36
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
37
37
|
tokenizer, install groonga-tokenizer-mecab package.
|
38
38
|
|
@@ -73,6 +73,8 @@ Install::
|
|
73
73
|
% sudo apt-get update
|
74
74
|
% sudo apt-get install -y groonga
|
75
75
|
|
76
|
+
.. include:: server-use.inc
|
77
|
+
|
76
78
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
77
79
|
tokenizer, install groonga-tokenizer-mecab package.
|
78
80
|
|
@@ -113,6 +115,8 @@ Install::
|
|
113
115
|
% sudo apt-get update
|
114
116
|
% sudo apt-get install -y -V groonga
|
115
117
|
|
118
|
+
.. include:: server-use.inc
|
119
|
+
|
116
120
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
117
121
|
tokenizer, install groonga-tokenizer-mecab package.
|
118
122
|
|
@@ -145,9 +149,9 @@ Install required packages to build Groonga::
|
|
145
149
|
|
146
150
|
Download source::
|
147
151
|
|
148
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
149
|
-
% tar xvzf groonga-4.0.
|
150
|
-
% cd groonga-4.0.
|
152
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
153
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
154
|
+
% cd groonga-4.0.5
|
151
155
|
|
152
156
|
Configure (see :ref:`source-configure` about ``configure`` options)::
|
153
157
|
|
@@ -10,13 +10,12 @@ Fedora. You can install them by ``yum``.
|
|
10
10
|
|
11
11
|
.. note::
|
12
12
|
|
13
|
-
Since Groonga 3.0.2 release, Groonga related RPM pakcages are in the
|
14
|
-
Fedora yum repository (Fedora 18). So you can use them
|
15
|
-
repository now. There is some exceptions
|
16
|
-
repository because
|
17
|
-
(mecab-ipadic or mecab-jumandic) are provided by
|
18
|
-
|
19
|
-
``groonga-normalizer-mysql`` in the official Fedora yum repository in the future.
|
13
|
+
Since Groonga 3.0.2 release, Groonga related RPM pakcages are in the
|
14
|
+
official Fedora yum repository (Fedora 18). So you can use them
|
15
|
+
instead of the Groonga yum repository now. There is some exceptions
|
16
|
+
to use the Groonga yum repository because mecab dictionaries
|
17
|
+
(mecab-ipadic or mecab-jumandic) are provided by the Groonga yum
|
18
|
+
repository.
|
20
19
|
|
21
20
|
We distribute both 32-bit and 64-bit packages but we strongly
|
22
21
|
recommend a 64-bit package for server. You should use a 32-bit package
|
@@ -24,8 +23,6 @@ just only for tests or development. You will encounter an out of
|
|
24
23
|
memory error with a 32-bit package even if you just process medium
|
25
24
|
size data.
|
26
25
|
|
27
|
-
.. include:: server-use.inc
|
28
|
-
|
29
26
|
Fedora 20
|
30
27
|
---------
|
31
28
|
|
@@ -33,13 +30,14 @@ Install::
|
|
33
30
|
|
34
31
|
% sudo yum install -y groonga
|
35
32
|
|
36
|
-
Note that additional packages such as ``
|
37
|
-
``
|
38
|
-
``groonga-release`` package which provides the groonga yum repository beforehand::
|
33
|
+
Note that additional packages such as ``mecab-dic`` and ``mecab-jumandic`` packages require to install
|
34
|
+
``groonga-release`` package which provides the Groonga yum repository beforehand::
|
39
35
|
|
40
36
|
% sudo rpm -ivh http://packages.groonga.org/fedora/groonga-release-1.1.0-1.noarch.rpm
|
41
37
|
% sudo yum update
|
42
38
|
|
39
|
+
.. include:: server-use.inc
|
40
|
+
|
43
41
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
44
42
|
tokenizer, install groonga-tokenizer-mecab package.
|
45
43
|
|
@@ -82,9 +80,9 @@ Install required packages to build Groonga::
|
|
82
80
|
|
83
81
|
Download source::
|
84
82
|
|
85
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
86
|
-
% tar xvzf groonga-4.0.
|
87
|
-
% cd groonga-4.0.
|
83
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
84
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
85
|
+
% cd groonga-4.0.5
|
88
86
|
|
89
87
|
Configure (see :ref:`source-configure` about ``configure`` options)::
|
90
88
|
|
@@ -39,9 +39,9 @@ Install `Xcode <https://developer.apple.com/xcode/>`_.
|
|
39
39
|
|
40
40
|
Download source::
|
41
41
|
|
42
|
-
% curl -O http://packages.groonga.org/source/groonga/groonga-4.0.
|
43
|
-
% tar xvzf groonga-4.0.
|
44
|
-
% cd groonga-4.0.
|
42
|
+
% curl -O http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
43
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
44
|
+
% cd groonga-4.0.5
|
45
45
|
|
46
46
|
Configure (see :ref:`source-configure` about ``configure`` options)::
|
47
47
|
|
@@ -74,9 +74,9 @@ Build from source
|
|
74
74
|
Groonga uses GNU build system. So the following is the simplest build
|
75
75
|
steps::
|
76
76
|
|
77
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
78
|
-
% tar xvzf groonga-4.0.
|
79
|
-
% cd groonga-4.0.
|
77
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
78
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
79
|
+
% cd groonga-4.0.5
|
80
80
|
% ./configure
|
81
81
|
% make
|
82
82
|
% sudo make install
|
@@ -134,7 +134,7 @@ command line option. So this option is not critical build option. It's
|
|
134
134
|
just for convenient.
|
135
135
|
|
136
136
|
The default is ``/usr/local/var/log/groonga.log``. The
|
137
|
-
``/usr/local/var`` part is changed by ``--
|
137
|
+
``/usr/local/var`` part is changed by ``--localstatedir`` option.
|
138
138
|
|
139
139
|
Here is an example that log file is placed into shared NFS directory
|
140
140
|
``/nfs/log/groonga.log``::
|
@@ -17,9 +17,9 @@ Install required packages to build Groonga::
|
|
17
17
|
|
18
18
|
Download source::
|
19
19
|
|
20
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
21
|
-
% gtar xvzf groonga-4.0.
|
22
|
-
% cd groonga-4.0.
|
20
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
21
|
+
% gtar xvzf groonga-4.0.5.tar.gz
|
22
|
+
% cd groonga-4.0.5
|
23
23
|
|
24
24
|
Configure with ``CFLAGS="-m64" CXXFLAGS="-m64"`` variables. They are
|
25
25
|
needed for building 64-bit version. To build 32-bit version, just
|
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
|
|
14
14
|
memory error with a 32-bit package even if you just process medium
|
15
15
|
size data.
|
16
16
|
|
17
|
-
.. include:: server-use.inc
|
18
|
-
|
19
17
|
PPA (Personal Package Archive)
|
20
18
|
------------------------------
|
21
19
|
|
@@ -42,6 +40,8 @@ Install::
|
|
42
40
|
|
43
41
|
% sudo apt-get -y install groonga
|
44
42
|
|
43
|
+
.. include:: server-use.inc
|
44
|
+
|
45
45
|
If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
|
46
46
|
tokenizer, install groonga-tokenizer-mecab package.
|
47
47
|
|
@@ -74,9 +74,9 @@ Install required packages to build Groonga::
|
|
74
74
|
|
75
75
|
Download source::
|
76
76
|
|
77
|
-
% wget http://packages.groonga.org/source/groonga/groonga-4.0.
|
78
|
-
% tar xvzf groonga-4.0.
|
79
|
-
% cd groonga-4.0.
|
77
|
+
% wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
|
78
|
+
% tar xvzf groonga-4.0.5.tar.gz
|
79
|
+
% cd groonga-4.0.5
|
80
80
|
|
81
81
|
Configure (see :ref:`source-configure` about ``configure`` options)::
|
82
82
|
|
@@ -21,14 +21,14 @@ Installer
|
|
21
21
|
For 32-bit environment, download x86 executable binary from
|
22
22
|
packages.groonga.org:
|
23
23
|
|
24
|
-
* http://packages.groonga.org/windows/groonga/groonga-4.0.
|
24
|
+
* http://packages.groonga.org/windows/groonga/groonga-4.0.5-x86.exe
|
25
25
|
|
26
26
|
Then run it.
|
27
27
|
|
28
28
|
For 64-bit environment, download x64 executable binary from
|
29
29
|
packages.goronga.org:
|
30
30
|
|
31
|
-
* http://packages.groonga.org/windows/groonga/groonga-4.0.
|
31
|
+
* http://packages.groonga.org/windows/groonga/groonga-4.0.5-x64.exe
|
32
32
|
|
33
33
|
Then run it.
|
34
34
|
|
@@ -41,14 +41,14 @@ zip
|
|
41
41
|
For 32-bit environment, download x86 zip archive from
|
42
42
|
packages.groonga.org:
|
43
43
|
|
44
|
-
* http://packages.groonga.org/windows/groonga/groonga-4.0.
|
44
|
+
* http://packages.groonga.org/windows/groonga/groonga-4.0.5-x86.zip
|
45
45
|
|
46
46
|
Then extract it.
|
47
47
|
|
48
48
|
For 64-bit environment, download x64 zip archive from
|
49
49
|
packages.groonga.org:
|
50
50
|
|
51
|
-
* http://packages.groonga.org/windows/groonga/groonga-4.0.
|
51
|
+
* http://packages.groonga.org/windows/groonga/groonga-4.0.5-x64.zip
|
52
52
|
|
53
53
|
Then extract it.
|
54
54
|
|
@@ -66,27 +66,27 @@ Windows. Here are required tools:
|
|
66
66
|
|
67
67
|
Download zipped source from packages.groonga.org:
|
68
68
|
|
69
|
-
* http://packages.groonga.org/source/groonga/groonga-4.0.
|
69
|
+
* http://packages.groonga.org/source/groonga/groonga-4.0.5.zip
|
70
70
|
|
71
71
|
Then extract it.
|
72
72
|
|
73
73
|
Move to the Groonga's source folder::
|
74
74
|
|
75
|
-
> cd c:\Users\%USERNAME%\Downloads\groonga-4.0.
|
75
|
+
> cd c:\Users\%USERNAME%\Downloads\groonga-4.0.5
|
76
76
|
|
77
77
|
Configure by ``cmake``. The following commnad line is for 64-bit
|
78
78
|
version. To build 32-bit version, use ``-G "Visual Studio 10"``
|
79
79
|
parameter instead::
|
80
80
|
|
81
|
-
groonga-4.0.
|
81
|
+
groonga-4.0.5> cmake . -G "Visual Studio 10 Win64" -DCMAKE_INSTALL_PREFIX=C:\groonga
|
82
82
|
|
83
83
|
Build::
|
84
84
|
|
85
|
-
groonga-4.0.
|
85
|
+
groonga-4.0.5> cmake --build . --config Release
|
86
86
|
|
87
87
|
Install::
|
88
88
|
|
89
|
-
groonga-4.0.
|
89
|
+
groonga-4.0.5> cmake --build . --config Release --target Install
|
90
90
|
|
91
91
|
After the above steps, :doc:`/reference/executables/groonga` is found in
|
92
92
|
``c:\groonga\bin\groonga.exe``.
|
@@ -1,10 +1,155 @@
|
|
1
1
|
.. -*- rst -*-
|
2
2
|
|
3
|
+
:orphan:
|
4
|
+
|
3
5
|
.. highlightlang:: none
|
4
6
|
|
5
7
|
News
|
6
8
|
====
|
7
9
|
|
10
|
+
.. _release-4-0-5:
|
11
|
+
|
12
|
+
Release 4.0.5 - 2014/08/29
|
13
|
+
--------------------------
|
14
|
+
|
15
|
+
Improvements
|
16
|
+
^^^^^^^^^^^^
|
17
|
+
|
18
|
+
* Dropped Ubuntu 13.10 (Saucy Salamander).
|
19
|
+
* Supported to show weight vector element as XML.
|
20
|
+
* [ :doc:`/reference/functions/between` ] Supported outside of key range.
|
21
|
+
* [mruby] Changed to use Onigmo as regexp implementation.
|
22
|
+
* Added :doc:`/reference/functions/highlight_full` and
|
23
|
+
:doc:`/reference/functions/highlight_html` which tags
|
24
|
+
output text. [GitHub#185] [Patch by Naoya Murakami]
|
25
|
+
* [doc] Updated outdated functions/commands reference
|
26
|
+
[GitHub#188] [GitHub#189] [Patch by Naoya Murakami]
|
27
|
+
* [benchmark] Added average and median in benchmark result.
|
28
|
+
* Exported :c:func:`grn_selector_func` and :c:func:`grn_proc_set_selector`
|
29
|
+
for plugin developer. [GitHub#190] [Patch by Naoya Murakami]
|
30
|
+
* [ :doc:`/reference/commands/tokenize` ] Added "mode" option to control behavior.
|
31
|
+
You can use ``GET`` or ``ADD`` as a mode.
|
32
|
+
[GitHub#191] [GitHub#192] [Patch by Naoya Murakami]
|
33
|
+
* Supported near search by '\*N"A Z"' syntax.
|
34
|
+
* Supported to customize behavior of tokenizer whether it skips token or
|
35
|
+
skips token with position. This feature is useful for developing tokenizer plugin.
|
36
|
+
[GitHub#193] [Patch by Naoya Murakami]
|
37
|
+
* [doc] Updated description that a bug report is accepted in Japanese on GitHub issue tracker.
|
38
|
+
[Reported by 6elz] [groonga-dev,02651]
|
39
|
+
* [doc] Updated tutorial in English. [GitHub#194] [Patch by cosmo0920]
|
40
|
+
|
41
|
+
Fixes
|
42
|
+
^^^^^
|
43
|
+
|
44
|
+
* [php] Fixed memory leak when :c:func:`grn_ctx_recv()` is used.
|
45
|
+
[GitHub#184] [Patch by @do-aki]
|
46
|
+
* [php] Fixed to avoid double free when :c:func:`grn_ctx_close()` is called.
|
47
|
+
[GitHub#184] [Patch by @do-aki]
|
48
|
+
* Fixed to support out-of-tree build again.
|
49
|
+
* [httpd] Updated bundled nginx version to the latest mainline (1.7.4). This update contains vulnerability fix.
|
50
|
+
* Fixed a bug that infinite loop occurs sometimes when updating indexes.
|
51
|
+
[groonga-dev,02673] [Reported by MINAGAWA Sho]
|
52
|
+
* Fixed a bug that document frequency is invalid when
|
53
|
+
:ref:`offline-index-construction` is used.
|
54
|
+
[groonga-dev,02691] [Reported by Naoya Murakami]
|
55
|
+
|
56
|
+
Thanks
|
57
|
+
^^^^^^
|
58
|
+
|
59
|
+
* @do-aki
|
60
|
+
* Naoya Murakami
|
61
|
+
* 6elz
|
62
|
+
* MINAGAWA Sho
|
63
|
+
* cosmo0920
|
64
|
+
|
65
|
+
.. _release-4-0-4:
|
66
|
+
|
67
|
+
Release 4.0.4 - 2014/07/29
|
68
|
+
--------------------------
|
69
|
+
|
70
|
+
Improvements
|
71
|
+
^^^^^^^^^^^^
|
72
|
+
|
73
|
+
* [httpd] Updated bundled nginx version to the latest mainline (1.7.3).
|
74
|
+
* Supported weight in vector column.
|
75
|
+
* [ :doc:`/reference/executables/groonga-benchmark` ] Added missing description about HTTP.
|
76
|
+
* [ :doc:`/tutorial` ] Updated English tutorial documentation.
|
77
|
+
* [example] Supported Ruby 1.9 or later for edict2grn.rb.
|
78
|
+
* [http][admin] Updated to use English as default language. [GitHub#182]
|
79
|
+
|
80
|
+
Fixes
|
81
|
+
^^^^^
|
82
|
+
|
83
|
+
* Fixed to show right syntax error location in response.
|
84
|
+
* [httpd] Fixed build error on Clang. [GitHub clear-code/rurema-search#11] [Reported by niku]
|
85
|
+
|
86
|
+
Thanks
|
87
|
+
^^^^^^
|
88
|
+
|
89
|
+
* niku
|
90
|
+
|
91
|
+
.. _release-4-0-3:
|
92
|
+
|
93
|
+
|
94
|
+
Release 4.0.3 - 2014/06/29
|
95
|
+
--------------------------
|
96
|
+
|
97
|
+
Improvements
|
98
|
+
^^^^^^^^^^^^
|
99
|
+
|
100
|
+
* [experimental][ :doc:`/reference/executables/groonga-server-http` ]
|
101
|
+
Supported POST.
|
102
|
+
* [windows] Bundled libwinpthread-1.dll. Because newer
|
103
|
+
libgcc_s_sjlj-1.dll depends on libwinpthread-1.dll.
|
104
|
+
[groonga-dev,02398] [Reported by Masafumi Yokoyama]
|
105
|
+
* [ :doc:`/reference/executables/groonga` ] Changed the default port number of
|
106
|
+
GQTP to 10043. Because server packages use 10043 by default.
|
107
|
+
[GitHub#172] [Patch by Naoya Murakami]
|
108
|
+
* [ :doc:`/reference/commands/normalize` ] Added more validations for invalid
|
109
|
+
argument.
|
110
|
+
[groonga-dev,02409][GitHub:#174]
|
111
|
+
[Reported by GMO Media, Inc.][Patch by Naoya Murakami]
|
112
|
+
* [ :doc:`/reference/commands/tokenize` ] Added more validations for invalid
|
113
|
+
argument.
|
114
|
+
* [ :doc:`/reference/executables/groonga-server-http` ] Supported ``Expect:
|
115
|
+
100-Continue`` request.
|
116
|
+
* Exported ``grn_proc_get_type()``.
|
117
|
+
* [ :doc:`/reference/executables/groonga-suggest-learner` ]
|
118
|
+
Added ``--log-path`` and ``--log-level`` options.
|
119
|
+
* Deprecated ``GRN_CTX_USE_QL``.
|
120
|
+
* Deprecated ``GRN_CTX_BATCH_MODE``.
|
121
|
+
* Added ``grn_text_printf()``.
|
122
|
+
* Added ``grn_text_vprintf()``.
|
123
|
+
* Removed limitation of one query log size.
|
124
|
+
* Added :c:func:`grn_plugin_expr_var_init()`.
|
125
|
+
[GitHub#175][Patch by Naoya Murakami]
|
126
|
+
* Added :c:func:`grn_plugin_command_create()`.
|
127
|
+
[GitHub#175][Patch by Naoya Murakami]
|
128
|
+
* [GitHub#176] Supported reference vector column with weight.
|
129
|
+
* [plugin] Used public API instead of internal API.
|
130
|
+
[GitHub#177][GitHub#178] [Patch by Naoya Murakami]
|
131
|
+
* [doc][plugin] Added plugin APIs.
|
132
|
+
[GitHub#179] [Patch by Naoya Murakami]
|
133
|
+
* [windows] Re-supported Visual C++ 2010.
|
134
|
+
[groonga-dev,02454] [Reported by cosmo0920].
|
135
|
+
|
136
|
+
Fixes
|
137
|
+
^^^^^
|
138
|
+
|
139
|
+
* [rpm][groonga-server-gqtp] Fixed a bug that HTTP protocol is used
|
140
|
+
not GQTP.
|
141
|
+
[GitHub#173] [Patch by Naoya Murakami]
|
142
|
+
* [ :doc:`/reference/commands/select` ] Fixed a crash bug when
|
143
|
+
:ref:`select-adjuster` has a syntax error.
|
144
|
+
|
145
|
+
Thanks
|
146
|
+
^^^^^^
|
147
|
+
|
148
|
+
* Masafumi Yokoyama
|
149
|
+
* Naoya Murakami
|
150
|
+
* GMO Media, Inc.
|
151
|
+
* cosmo0920
|
152
|
+
|
8
153
|
.. _release-4-0-2:
|
9
154
|
|
10
155
|
|
@@ -24,7 +169,7 @@ Improvements
|
|
24
169
|
* Supported Ubuntu 14.04 (Trusty Tahr).
|
25
170
|
* Dropped Ubuntu 12.10.
|
26
171
|
* Migrated Ubuntu package distribution site to PPA on Launchpad.
|
27
|
-
See :doc:`/install/
|
172
|
+
See :doc:`/install/ubuntu` for details.
|
28
173
|
* Handled all requests that start with ``/d/`` as API requests. You
|
29
174
|
need to put files to directories that don't start with ``/d/`` to
|
30
175
|
serve by Groonga HTTP service.
|
@@ -158,1205 +303,15 @@ Thanks
|
|
158
303
|
* Naoya Murakami
|
159
304
|
* Ryoji Yamamoto
|
160
305
|
|
161
|
-
.. _release-3-1-2:
|
162
|
-
|
163
|
-
Release 3.1.2 - 2014/01/29
|
164
|
-
--------------------------
|
165
|
-
|
166
|
-
Improvements
|
167
|
-
^^^^^^^^^^^^
|
168
|
-
|
169
|
-
* [doc] Updated to caplitalized "Groonga" terms in documentation. [Patch by cosmo0920] [GitHub#136, #137, #138, #139, #140, #141, #142, #143, #144, #145, #146, #147, #148, #149, #150, #151]
|
170
|
-
* Supported to customize the value of lock timeout. See :doc:`/reference/api/global_configurations` about details.
|
171
|
-
[groonga-dev,02017] [Suggested by yoku]
|
172
|
-
* [doc] Added description about the value of lock timeout.
|
173
|
-
* Enabled ``GRN_JA_SKIP_SAME_VALUE_PUT`` by default. In the previous releases, the value of
|
174
|
-
this configuration is 'no'. This change affects reducing the size of Groonga database.
|
175
|
-
* Supported multiple indexes including a nested index and multiple keywords query.
|
176
|
-
This change improves missing search results isssue when narrowing down by multiple keywords query.
|
177
|
-
* Added API to customize normalizer for snippet.
|
178
|
-
|
179
|
-
Fixes
|
180
|
-
^^^^^
|
181
|
-
|
182
|
-
* Fixed not to use index for empty query. This change enables you to search even though empty query.
|
183
|
-
Note that this means that there is performance penalty if many empty records exist.
|
184
|
-
[groonga-dev,02052] [Reported by Naoya Murakami]
|
185
|
-
* Fixed the behaviour about return value of "X || Y" and "X && Y" for adjusting to ECMAScript.
|
186
|
-
In "X || Y" case, if either X or Y satisfy the condition, it returns X itself or Y itself instead of 1 or 0.
|
187
|
-
* In "X && Y" case, if X and Y satisfy the condition, it returns X itself instead of 1.
|
188
|
-
if X doesn't satisfy the condition, it returns false instead of 0.
|
189
|
-
* Fixed to return null when no snippet is found. This change enables you to set the default value
|
190
|
-
of :doc:`/reference/functions/snippet_html`. In such a purpose, use "snippet_html(XXX) || 'default value'".
|
191
|
-
|
192
|
-
Thanks
|
193
|
-
^^^^^^
|
194
|
-
|
195
|
-
* cosmo0920
|
196
|
-
* yoku
|
197
|
-
* Naoya Murakami
|
198
|
-
|
199
|
-
.. _release-3-1-1:
|
200
|
-
|
201
|
-
Release 3.1.1 - 2013/12/29
|
202
|
-
--------------------------
|
203
|
-
|
204
|
-
Improvements
|
205
|
-
^^^^^^^^^^^^
|
206
|
-
|
207
|
-
* [deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
|
208
|
-
[Suggested by Hideki Yamane]
|
209
|
-
* [deb] Dropped Debian 6.0 (squeeze) support.
|
210
|
-
* [deb] Dropped Ubuntu 10.04 (lucid) support.
|
211
|
-
* Supported :doc:`/reference/functions/geo_in_rectangle` in the whole world.
|
212
|
-
* Supported error report when failed to casting invalid value of geo point type.
|
213
|
-
* Exported some macros which is used for accessing pseudo column names.
|
214
|
-
[groonga-dev,1999] [Suggested by whombx]
|
215
|
-
* [doc] Refined drilldown documentation. [Reported by @Yahppo]
|
216
|
-
* Supported :doc:`/reference/functions/between` function which is used for
|
217
|
-
filtering the column value in specific range.
|
218
|
-
* [doc] Updated Travis CI environment information. [Patch by cosmo0920]
|
219
|
-
* [rpm][fedora] Dropped Fedora 19.
|
220
|
-
* [rpm][fedora] Supported Fedora 20.
|
221
|
-
* [doc] Updated "Groonga" notation. [Patch by cosmo0920] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]
|
222
|
-
|
223
|
-
Fixes
|
224
|
-
^^^^^
|
225
|
-
|
226
|
-
* [munin] Fixed the wrong port number which is specified for GQTP.
|
227
|
-
* [geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
|
228
|
-
the 3rd argument of :doc:`/reference/functions/geo_in_circle`, Groonga crashes.
|
229
|
-
|
230
|
-
Thanks
|
231
|
-
^^^^^^
|
232
|
-
|
233
|
-
* Hideki Yamane
|
234
|
-
* whombx
|
235
|
-
* @Yappo
|
236
|
-
* cosmo0920
|
237
|
-
|
238
|
-
.. _release-3-1-0:
|
239
|
-
|
240
|
-
Release 3.1.0 - 2013/11/29
|
241
|
-
--------------------------
|
242
|
-
|
243
|
-
Improvements
|
244
|
-
^^^^^^^^^^^^
|
245
|
-
|
246
|
-
* [experimental] Supported an option to skip updating for the same value.
|
247
|
-
It is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable.
|
248
|
-
* Improved to show tokenizer and original text in empty token warning message.
|
249
|
-
It shows actual token, so it helps you to investigate token related issue.
|
250
|
-
* Dropped broken AIO support. [#2054] [Reported by sho MINAGAWA]
|
251
|
-
* [windows] Supported build with Visual Studio Express 2008. [#1964 the 21th comment]
|
252
|
-
It is aimed to promote bundling Mroonga with MariaDB in the future.
|
253
|
-
|
254
|
-
Fixes
|
255
|
-
^^^^^
|
256
|
-
|
257
|
-
* Fixed a bug that type of "_value" column is treated as Int32.
|
258
|
-
It causes the case that the value of "_value" column is casted unexpectedly.
|
259
|
-
[Reported by Genki Takiuchi]
|
260
|
-
* Fixed to require GLib 2.14.0 or later for benchmark program.
|
261
|
-
The benchmark program is changed to use GRegex which requires GLib 2.14.0 or later.
|
262
|
-
It affects users who compile Groonga with '--enable-benchmark' configuration.
|
263
|
-
[groonga-dev,01890] [Reported by WING]
|
264
|
-
* Fixed a memory leak on updating an empty column vector with the same value.
|
265
|
-
* Fixed a memory leak on updating index for column vector.
|
266
|
-
It affects the case if you store the value of column which has invalid UTF-8 byte
|
267
|
-
sequence.
|
268
|
-
* [plugin][windows] Fixed the issue that register command fails without
|
269
|
-
'lib/groonga/plugins'. [Reported by @yito]
|
270
|
-
|
271
|
-
Thanks
|
272
|
-
^^^^^^
|
273
|
-
|
274
|
-
* sho MINAGAWA
|
275
|
-
* Genki Takiuchi
|
276
|
-
* WING
|
277
|
-
* @yito
|
278
|
-
|
279
|
-
.. _release-3-0-9:
|
280
|
-
|
281
|
-
Release 3.0.9 - 2013/10/29
|
282
|
-
--------------------------
|
283
|
-
|
284
|
-
Improvements
|
285
|
-
^^^^^^^^^^^^
|
286
|
-
|
287
|
-
* [doc][httpd] Added documentation about :ref:`groonga-database-auto-create` directive.
|
288
|
-
* [httpd] Added :ref:`groonga-cache-limit` directive.
|
289
|
-
* [doc] Added description why zlib/lzo compression are disabled by default. [groonga-dev, 01845] [Suggested by Naoya Murakami]
|
290
|
-
* Remove a restriction related to RLIMIT_NOFILE on HTTP server.
|
291
|
-
It enables HTTP server process to handle over 4096 files.
|
292
|
-
* [experimental] Added some API to integrate mruby into groonga. [GitHub#109, #110, #111, #112, #113, #114, #115, #116, #117, #118] [Patch by wanabe]
|
293
|
-
* [travis] Supported CMake build on Travis-CI.
|
294
|
-
* [doc] Added documentation about :doc:`reference/tuning`.
|
295
|
-
* [experimental] Added :doc:`ruby_load` command.
|
296
|
-
* [httpd] Supported multiple buffered body of POST request.
|
297
|
-
The load command caused timeout in such a case. [GitHub #120] [Patch by Motoi Washida]
|
298
|
-
* [gqtp] Supported error message. The body is changed to return
|
299
|
-
raw text insted of double quoted text. This is incompatible changes.
|
300
|
-
* [http] Supported "400 Bad request" for invalid argument error.
|
301
|
-
* [doc] Added examples for :doc:`/suggest/completion`
|
302
|
-
* Supported Ubuntu 13.10 (Saucy Salamander).
|
303
|
-
|
304
|
-
Fixes
|
305
|
-
^^^^^
|
306
|
-
|
307
|
-
* Fixed a bug that it cause SEGV by arithmetic overflow.
|
308
|
-
This problem occurs when the size of indexes exceeds
|
309
|
-
the size of virtual memory. [groonga-dev,01661]
|
310
|
-
[Reported by Naoya Murakami]
|
311
|
-
* Fixed needless lock for creating table.
|
312
|
-
This change fixes a performance regression instroduced at Groonga 3.0.5.
|
313
|
-
* Fixed a bug that database which has reference column can't be removed.
|
314
|
-
It affects the case that indexed tables/columns and referenced tables
|
315
|
-
are removed at first, then remove operation to index columns and
|
316
|
-
reference columns fails. [Reported by Eito Katagiri] [GitHub Rroonga #13]
|
317
|
-
* Fixed a bug that removing database which uses DAT key may remain garbage.
|
318
|
-
* [http] Fixed a small memory leak which is caused by shared HTTP header buffer in the same worker thread.
|
319
|
-
* [httpd] Fixed a bug that :ref:`groonga-database-auto-create` parameter
|
320
|
-
isn't inherited. It means that these parameters are just ignored in non location blocks.
|
321
|
-
* Fixed a bug that status command may returns invalid cache hit rate.
|
322
|
-
* Fix a bug that casting to Time may causes overflow issue.
|
323
|
-
It affects the case that assignment of the Time value which indicate over 32bit value.
|
324
|
-
|
325
|
-
Thanks
|
326
|
-
^^^^^^
|
327
|
-
|
328
|
-
* Naoya Murakami
|
329
|
-
* wanabe
|
330
|
-
* Motoi Washida
|
331
|
-
* Eito Katagiri
|
332
|
-
|
333
|
-
.. _release-3-0-8:
|
334
|
-
|
335
|
-
Release 3.0.8 - 2013/09/29
|
336
|
-
--------------------------
|
337
|
-
|
338
|
-
Improvements
|
339
|
-
^^^^^^^^^^^^
|
340
|
-
|
341
|
-
* [admin] Improved error handling of select functionality. This change shows error message
|
342
|
-
and hides loading dialog. [Patch by orangain]
|
343
|
-
* [admin] Improved to submit search form with the enter key. [Patch by orangain]
|
344
|
-
* [admin] Improved to show placeholder in search form.
|
345
|
-
This change shows usage examples. [Patch by orangain]
|
346
|
-
* [httpd] Supported :ref:`groonga-query-log-path` directive
|
347
|
-
* [doc] Updated :doc:`/reference/commands/select` documentation about the number of
|
348
|
-
hits in select response.
|
349
|
-
* Improved to ignore an empty token which is generated by continuous spaces from tokenizer.
|
350
|
-
[groonga-dev,01729] [Suggested by Naoya Murakami]
|
351
|
-
* [token delimit] Improved to treat continuous spaces as a space.
|
352
|
-
The tokenizer regards 2 or more spaces are valid input.
|
353
|
-
* [doc] Added note about indexes for each column vs indexes for multiple column.
|
354
|
-
* [doc] Added language annotation to source label. [groonga-dev,01751] [Suggested by Kazuhiro Isobe]
|
355
|
-
* Supported :ref:`cascade-delete` to referenced records. In previous version,
|
356
|
-
You got an error for the operation.
|
357
|
-
* [doc] Updated documentation location in README. [groonga-dev,01800] [Reported by Kazuhiro Isobe]
|
358
|
-
* [experimental] Added :doc:`/reference/commands/ruby_eval` command.
|
359
|
-
* [doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] [Reported by Kazuhiro Isobe]
|
360
|
-
|
361
|
-
Fixes
|
362
|
-
^^^^^
|
363
|
-
|
364
|
-
* [admin] Fixed a bug that add value button of COLUMN_VECTOR does not work.
|
365
|
-
|
366
|
-
Thanks
|
367
|
-
^^^^^^
|
368
|
-
|
369
|
-
* orangain
|
370
|
-
* Naoya Murakami
|
371
|
-
* Kazuhiro Isobe
|
372
|
-
|
373
|
-
.. _release-3-0-7:
|
374
|
-
|
375
|
-
Release 3.0.7 - 2013/08/29
|
376
|
-
--------------------------
|
377
|
-
|
378
|
-
Improvements
|
379
|
-
^^^^^^^^^^^^
|
380
|
-
|
381
|
-
* [doc] Added API documentation. [groonga-dev,01593]
|
382
|
-
[GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]
|
383
|
-
[Patch by whombx]
|
384
|
-
* [table_remove] Improved not to remove patricia trie table or hash table
|
385
|
-
which is still referenced. This change avoids that referenced table is removed accidentally.
|
386
|
-
* Improved to just ignore too long token (4096 bytes or more).
|
387
|
-
This change affects when it is registered. In the previous version, it is treated as an
|
388
|
-
error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]
|
389
|
-
* Improved to show actual discarded posting term in log message.
|
390
|
-
[groonga-dev,01621] [Reported by Naoya Murakami]
|
391
|
-
* [httpd] Supported loading data using POST method. [GitHub#101]
|
392
|
-
[Patch by Motoi Washida]
|
393
|
-
* [httpd] Supported groonga log as ``groonga_log_path`` directive.
|
394
|
-
* [httpd] Supported groonga log level as ``groonga_log_level`` directive.
|
395
|
-
* [httpd] Supported customizing cache limit as ``groonga_cache_limit`` directive.
|
396
|
-
|
397
|
-
Fixes
|
398
|
-
^^^^^
|
399
|
-
|
400
|
-
* Fixed a bug that error in expression may cause stack overflow.
|
401
|
-
This change avoids that groonga crashes suddenly as a result of error accumlation.
|
402
|
-
* Fixed a crash bug that offline index construction for vector column which has
|
403
|
-
orphan reference causes.
|
404
|
-
* Fixed a bug that groonga doesn't exit on error while daemon mode starts.
|
405
|
-
For example, ``groonga -d /tmp/non-existence.db`` reproduce this bug.
|
406
|
-
* [dump] Fixed a bug that wrong table type is dumped.
|
407
|
-
This bug occurs when table type is TABLE_PAT_KEY and key is reference type.
|
408
|
-
* Fixed a bug that the default ``--cache-limit`` value is 0.
|
409
|
-
The default value is changed to '100'.
|
410
|
-
* Fixed a memory leak when :doc:`/reference/functions/sub_filter` is used.
|
411
|
-
* [doc] Fixed description of defrag command. [Reported by @naoina]
|
412
|
-
* [doc] Fixed description about the way to contribute. [GitHub#77]
|
413
|
-
[Patch by Masafumi Yokoyama]
|
414
|
-
* [plugin] Fixed a crash bug on multiple DB open case.
|
415
|
-
This bug affects the case that multiple plugin is used and the same database is opened from
|
416
|
-
multiple process. [groonga-dev,01596] [Reported by Naoya Murakami]
|
417
|
-
* Fixed a bug that nested match operation after ``AND`` operator doesn't work.
|
418
|
-
The ``select ... --filter '... && nested.column @ "keyword"'`` query reproduces this bug.
|
419
|
-
[groonga-dev,01599] [Reported by Motoi Washida]
|
420
|
-
* [doc] Fixed a typo about documentation of special characters.
|
421
|
-
[Reported by Genki Takiuchi]
|
422
|
-
* Fixed a typo in error message when invalid character is given.
|
423
|
-
[Reported by YOSHIDA Mitsuo]
|
424
|
-
|
425
|
-
Thanks
|
426
|
-
^^^^^^
|
427
|
-
|
428
|
-
* whombx
|
429
|
-
* @naoina
|
430
|
-
* Masafumi Yokoyama
|
431
|
-
* Motoi Washida
|
432
|
-
* Genki Takiuchi
|
433
|
-
* YOSHIDA Mitsuo
|
434
|
-
|
435
|
-
.. _release-3-0-6:
|
436
|
-
|
437
|
-
Release 3.0.6 - 2013/07/29
|
438
|
-
--------------------------
|
439
|
-
|
440
|
-
Improvements
|
441
|
-
^^^^^^^^^^^^
|
442
|
-
|
443
|
-
* [doc] Added documentation about parameter of :doc:`/reference/functions/sub_filter`
|
444
|
-
function.
|
445
|
-
* [suggest] Supported 0MQ 3.x. [GitHub#63] [Reported by Naoya Inada]
|
446
|
-
* Added availability check for NetBSD about ``pthread_{mutex,cond}attr_setpshared()``
|
447
|
-
[Reported by OBATA Akio]
|
448
|
-
* Supported backslash escape in query syntax. [groonga-dev,01520]
|
449
|
-
[Reported by Kouhei Tanabe]
|
450
|
-
* [rpm][fedora] Supported Fedora 19.
|
451
|
-
* [rpm][fedora] Dropped Fedora 18 support.
|
452
|
-
* [httpd] Updated bundled nginx version to 1.4.2.
|
453
|
-
|
454
|
-
Fixes
|
455
|
-
^^^^^
|
456
|
-
|
457
|
-
* Fixed a crash bug when specific internal function (``grn_obj_path()``) is called
|
458
|
-
for built-in proc function such as ``select``. [Reported by Genki Takiuchi]
|
459
|
-
|
460
|
-
Thanks
|
461
|
-
^^^^^^
|
462
|
-
|
463
|
-
* Naoya Inada
|
464
|
-
* OBATA Akio
|
465
|
-
* Kouhei Tanabe
|
466
|
-
* Genki Takiuchi
|
467
|
-
|
468
|
-
.. _release-3-0-5:
|
469
|
-
|
470
|
-
Release 3.0.5 - 2013/06/29
|
471
|
-
--------------------------
|
472
|
-
|
473
|
-
Improvements
|
474
|
-
^^^^^^^^^^^^
|
475
|
-
|
476
|
-
* [doc] Added summary about ``match_columns`` and ``query_string`` parameters in ``query()``.
|
477
|
-
* Added subrecord information to table inspection.
|
478
|
-
* Supported single quoted string literal in ``output_columns`` expression.
|
479
|
-
This means that "XXX, '...'" expression is supported.
|
480
|
-
* [doc] Added notification about root privileges and well known port
|
481
|
-
when starting groonga server. [Reported by Kosuke Asami]
|
482
|
-
* [experimental] Added :doc:`/reference/functions/html_untag` function.
|
483
|
-
|
484
|
-
Fixes
|
485
|
-
^^^^^
|
486
|
-
|
487
|
-
* Fixed a crash bug of mroonga which is caused by missing lock for table creation.
|
488
|
-
[Reported by Y.Kentaro]
|
489
|
-
* Fixed a lot of compilation warnings by clang and gcc.
|
490
|
-
* Fixed a bug that ``sub_filter(...)`` is ignored if you use "XXX && sub_filter(...)"
|
491
|
-
expression.
|
492
|
-
* Fixed a bug that wrong tag name is used in XML output.
|
493
|
-
This bug affects the case if you use "REFERENCE_VECTOR_COLUMN._key" expression
|
494
|
-
for ``output_columns``. Reference column isn't contained in XML ouput.
|
495
|
-
* [doc] Fixed wrong arguments in ``sub_filter()`` documentation.
|
496
|
-
* [deb] Fixed a bug that status action returns wrong exit code
|
497
|
-
when services are stopped. [GitHub#62] [Patch by @orangain]
|
498
|
-
* Fixed a bug that the value of arithmetic operation is broken.
|
499
|
-
This bug affects the case if you assign calculated value to
|
500
|
-
``_score`` pseudo column for example.
|
501
|
-
|
502
|
-
Thanks
|
503
|
-
^^^^^^
|
504
|
-
|
505
|
-
* Y.Kentaro
|
506
|
-
* Kosuke Asami
|
507
|
-
* @orangain
|
508
|
-
|
509
|
-
.. _release-3-0-4:
|
510
|
-
|
511
|
-
Release 3.0.4 - 2013/05/29
|
512
|
-
--------------------------
|
513
|
-
|
514
|
-
Improvements
|
515
|
-
^^^^^^^^^^^^
|
516
|
-
|
517
|
-
* [tokenizer] Improved to show log message when normalized string is not given.
|
518
|
-
* Supported ``_key`` as an argument of ``geo_in_circle``. [Reported by @ceekz]
|
519
|
-
* Supported to cast vector elements when groonga is used as a library.
|
520
|
-
* Dropped Ubuntu 11.10 (Oneiric Ocelot) support.
|
521
|
-
* Supported multiple index section in ``match_columns``.
|
522
|
-
* Supported ``tokenize`` command.
|
523
|
-
* Supported to show system error message when ``mmap()`` is failed.
|
524
|
-
* [doc][windows] Simplified build procedures by "cmake --build".
|
525
|
-
* Improved to restrict max execution time to prevent hanging service script.
|
526
|
-
[GitHub#61] [Reported by firewood]
|
527
|
-
* Supported to evaluate vector as boolean.
|
528
|
-
By this change, empty vector is evaluated as true.
|
529
|
-
* Improved not to log too many needless log messages.
|
530
|
-
Too many log messages are truncated as "(N same messages are truncated)".
|
531
|
-
* [munin][groonga_n_records] Added ``exclude_tables`` option.
|
532
|
-
It supports to exclude specific tables from monitoring results.
|
533
|
-
* Supported Debian 8.0 (jessie).
|
534
|
-
* Improved database portability by eliminating directory path of
|
535
|
-
system plugins.
|
536
|
-
|
537
|
-
Fixes
|
538
|
-
^^^^^
|
539
|
-
|
540
|
-
* [tokenizer] Fixed a memory leak on error.
|
541
|
-
* Fixed a bug that empty string for similar search causes SEGV.
|
542
|
-
[groonga-dev,01346] [Reported by Nakai Kanako]
|
543
|
-
* Fixed a memory leak when "VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx"
|
544
|
-
expressions are used.
|
545
|
-
* Fixed a bug that SIGSTOP and SIGCONT stops groonga server.
|
546
|
-
* Fixed a crash bug when normalizer returns NULL as normalized string.
|
547
|
-
[Reported by Y.Kentaro]
|
548
|
-
* Fixed a bug that daemonize process doesn't work on OS X.
|
549
|
-
[groonga-dev,01440] [Reported by Masahiro KONISHI]
|
550
|
-
* [deb] Fixed a bug that HTTP/GQTP process is excuted as root user.
|
551
|
-
|
552
|
-
Thanks
|
553
|
-
^^^^^^
|
554
|
-
|
555
|
-
* @ceekz
|
556
|
-
* Nakai Kanako
|
557
|
-
* firewood
|
558
|
-
* Y.Kentaro
|
559
|
-
* Masahiro KONISHI
|
560
|
-
* @orangain
|
561
|
-
|
562
|
-
.. _release-3-0-3:
|
563
|
-
|
564
|
-
Release 3.0.3 - 2013/04/29
|
565
|
-
--------------------------
|
566
|
-
|
567
|
-
Improvements
|
568
|
-
^^^^^^^^^^^^
|
569
|
-
|
570
|
-
* [suggest] Supported to learn with the value of customized weight
|
571
|
-
by using ``configuration.weight`` configuration.
|
572
|
-
* Improved performance of geo-location search. For example,
|
573
|
-
``geo_in_rectangle`` is executed about 10% faster than ever.
|
574
|
-
* [rpm][centos] Added ``additional_configure_options`` parameter
|
575
|
-
for building customized groonga without changing spec file.
|
576
|
-
* Supported KyTea 0.4.5.
|
577
|
-
* Supported vector index access by "vector[N]" syntax.
|
578
|
-
* Added ``--default-tokenizer`` option to :doc:`/reference/executables/groonga-suggest-create-dataset` command.
|
579
|
-
* Added ``--help`` option to :doc:`/reference/executables/groonga-suggest-create-dataset` command.
|
580
|
-
* Supported Ubuntu 13.04 Raring Ringtail.
|
581
|
-
|
582
|
-
.. _release-3-0-2:
|
583
|
-
|
584
|
-
Release 3.0.2 - 2013/03/29
|
585
|
-
--------------------------
|
586
|
-
|
587
|
-
Improvements
|
588
|
-
^^^^^^^^^^^^
|
589
|
-
|
590
|
-
* Supported two or more indexes for a table key.
|
591
|
-
This change affects to eliminate potential crash case when loading a new key
|
592
|
-
to two or more indexed key.
|
593
|
-
* Supported binary operations such as ``X + Y``, ``X - Y``, ``X * Y``, ``X / Y``,
|
594
|
-
``X % Y``, ``X >> Y``, ``X << Y``, ``X | Y``, ``X ^ Y``, ``X & Y`` and ``X >>> Y``
|
595
|
-
for Int8, UInt8, Int16, UInt16 and UInt64.
|
596
|
-
* Added english documentation for ``load`` command.
|
597
|
-
* Supported binary assign operations such as ``X += Y``, ``X -= Y``, ``X *= Y``,
|
598
|
-
``X /= Y``, ``X %= Y``, ``X <<= Y``, ``X >>= Y``, ``X >>>= Y``, ``X &= Y``,
|
599
|
-
``X |= Y`` and ``X ^= Y`` for Int8, UInt8, Int16, UInt16 and UInt64.
|
600
|
-
* Supported unary operations such as ``-X`` for Int8, UInt8, Int16, UInt16 and UInt64.
|
601
|
-
* Supported complex string concatination in ``--output_columns``.
|
602
|
-
For example, you can use a query such as ``--output_columns '"<" + title + ">"'``.
|
603
|
-
* Added the information of the repository of groonga to development page.
|
604
|
-
* Added ``sub_filter()`` function.
|
605
|
-
* Supported query expander in ``query()`` function.
|
606
|
-
This change supports the query such as
|
607
|
-
``query("MATCH_COLUMNS", "QUERY", "QueryExpanderTSV")``.
|
608
|
-
* Renamed ``--query_expansion`` to ``--query_expander``.
|
609
|
-
``--query_expansion`` is regarded as deprecated.
|
610
|
-
|
611
|
-
Fixes
|
612
|
-
^^^^^
|
613
|
-
|
614
|
-
* Fixed a bug that ``snippet_html(XXX), XXX`` fails with "stack error".
|
615
|
-
This bug affects a query such as ``--output_columns 'snippet_html(title), content'``.
|
616
|
-
[Groonga-talk (no subject)] [Reported by Hendro Wibowo]
|
617
|
-
* Fixed a typo about install documentation. [Reported by hino]
|
618
|
-
* Fixed a bug that Travis-CI setup script fails.
|
619
|
-
[groonga-dev,01248] [Reported by ongaeshi]
|
620
|
-
* Fixed a memory leak.
|
621
|
-
This bug affects the case which satisfy following three conditions.
|
622
|
-
Column is a reference column, Column is a vector column and
|
623
|
-
Reference key size is 25 byte or lager.
|
624
|
-
* Fixed a crash bug by ``--output_columns _score.GARBAGE``.
|
625
|
-
This affects the case if GARBAGE does not exist.
|
626
|
-
|
627
|
-
Thanks
|
628
|
-
^^^^^^
|
629
|
-
|
630
|
-
* Hendro Wibowo
|
631
|
-
* hino
|
632
|
-
* ongaeshi
|
633
|
-
|
634
|
-
.. _release-3-0-1:
|
635
|
-
|
636
|
-
Release 3.0.1 - 2013/02/28
|
637
|
-
--------------------------
|
638
|
-
|
639
|
-
Improvements
|
640
|
-
^^^^^^^^^^^^
|
641
|
-
|
642
|
-
* Supported to set Bool to reference column when loading dataset by load command.
|
643
|
-
* Supported AND operation for nested index.
|
644
|
-
In this change, the expression "COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3" works.
|
645
|
-
Note that the order is important for this expression.
|
646
|
-
"1 <= COLUMN1.COLUMN2" is not supported yet. It is regarded as "COLUMN1.COLUMN2 <= 1".
|
647
|
-
* Supported sorting not indexed entries.
|
648
|
-
This change affects the case such as ``--sortby geo_distance(...)`` drops not indexed
|
649
|
-
entries.
|
650
|
-
* Supported range search for reference column by index.
|
651
|
-
This change enable you to search range by index which is TABLE_PAT_KEY or TABLE_DAT_KEY
|
652
|
-
based nested index of _key.
|
653
|
-
* [rpm][centos] Supported MeCab 0.995.
|
654
|
-
* [doc] Added missing documentation of commands such as ``column_rename`` or ``truncate``.
|
655
|
-
|
656
|
-
Fixes
|
657
|
-
^^^^^
|
658
|
-
|
659
|
-
* Fixed a bug that ``grn_index_cursor_next()`` returns NULL unexpectedly.
|
660
|
-
It causes that invalid index entry is returned after deleting entries.
|
661
|
-
This bug affects mroonga in storage mode. [groonga-dev,01192] [Reported by b senboku]
|
662
|
-
* Fixed a crash bug that ``geo_distance()`` sort by index.
|
663
|
-
This bug occurs by wrong the number of found records.
|
664
|
-
* [httpd] Enabled default owner/group of database setting as groonga/groonga.
|
665
|
-
|
666
|
-
Thanks
|
667
|
-
^^^^^^
|
668
|
-
|
669
|
-
* b senboku
|
670
|
-
|
671
|
-
|
672
|
-
.. _release-3-0-0:
|
673
|
-
|
674
|
-
Release 3.0.0 - 2013/02/09
|
675
|
-
--------------------------
|
676
|
-
|
677
|
-
* Bump version to 3.0.0!
|
678
|
-
|
679
|
-
Fixes
|
680
|
-
^^^^^
|
681
|
-
|
682
|
-
* [deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary
|
683
|
-
when ``groonga-tokenizer-mecab`` package is installed.
|
684
|
-
* Fixed a bug that int64 literal is truncated to uint32 value.
|
685
|
-
If you use string literal for int64, this bug does not affects.
|
686
|
-
* [rpm][centos] Fixed a bug that stopping ``groonga-server-http`` service
|
687
|
-
by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]
|
688
|
-
|
689
|
-
Thanks
|
690
|
-
^^^^^^
|
691
|
-
|
692
|
-
* IWAI, Masaharu
|
693
|
-
|
694
|
-
.. _release-2-1-2:
|
695
|
-
|
696
|
-
Release 2.1.2 - 2013/01/29
|
697
|
-
--------------------------
|
698
|
-
|
699
|
-
Improvements
|
700
|
-
^^^^^^^^^^^^
|
701
|
-
|
702
|
-
* Supported multiple ``query()`` in a select command.
|
703
|
-
For example, you can specify the keyword which has different weight such as
|
704
|
-
'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'
|
705
|
-
for ``--filter``.
|
706
|
-
* Dropped experimental view feature.
|
707
|
-
* Added ``grn_logger_reopen`` API for custom logger.
|
708
|
-
Note that ``grn_logger_info`` API is deprecated, use ``grn_logger`` API instead.
|
709
|
-
* Added ``grn_default_logger_set_path()`` and ``grn_default_logger_get_path()`` API.
|
710
|
-
Note that global ``grn_log_path`` variable was removed. Use above API.
|
711
|
-
* Added ``grn_default_query_logger_set_path()`` and
|
712
|
-
``grn_default_query_logger_get_path()`` API.
|
713
|
-
Note that global ``grn_qlog_path`` variable was removed. Use above API.
|
714
|
-
* Added translated documentation about :doc:`/reference/tables` and :doc:`/reference/normalizers`.
|
715
|
-
* [deb][rpm] Improved to install with missing dictionary when
|
716
|
-
``groonga-tokenizer-mecab`` package is installed.
|
717
|
-
* Supported :ref:`nested-index-search` with range search.
|
718
|
-
For example, you can specify 'column1.column2...columnN <= "1988-01-04 00:00:00"'
|
719
|
-
in ``--filter``.
|
720
|
-
* [rpm][fedora] Supported Fedora 18.
|
721
|
-
* [rpm][fedora] Dropped Fedora 17 support.
|
722
|
-
* [doc] Added documentation for :doc:`/server/package`.
|
723
|
-
* [doc] Added documentation for :doc:`/reference/functions/query`.
|
724
|
-
|
725
|
-
Fixes
|
726
|
-
^^^^^
|
727
|
-
|
728
|
-
* Fixed not to report an error even though MeCab tokenizer shared object
|
729
|
-
isn't found. [groonga-dev,01174] [Reported by wing]
|
730
|
-
* [httpd] Fixed not to fail configure on CentOS 5.4 by setting
|
731
|
-
``SED`` variable explicitly.
|
732
|
-
* Fixed a crash bug that not initialized vector column value is accessed
|
733
|
-
by select command.
|
734
|
-
|
735
|
-
Thanks
|
736
|
-
^^^^^^
|
737
|
-
|
738
|
-
* wing
|
739
|
-
|
740
|
-
.. _release-2-1-1:
|
741
|
-
|
742
|
-
Release 2.1.1 - 2012/12/29
|
743
|
-
--------------------------
|
744
|
-
|
745
|
-
This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
|
746
|
-
instead.
|
747
|
-
|
748
|
-
Fixes
|
749
|
-
^^^^^
|
750
|
-
|
751
|
-
* Fixed a bug that ``KEY_NORMALIZE`` information in database that is
|
752
|
-
created by groonga 2.0.8 or ealier is dropped.
|
753
|
-
|
754
|
-
.. _release-2-1-0:
|
755
|
-
|
756
|
-
Release 2.1.0 - 2012/12/29
|
757
|
-
--------------------------
|
758
|
-
|
759
|
-
.. Caution::
|
760
|
-
|
761
|
-
Use 2.1.1 instead of 2.1.0. 2.1.0 has a serious bug related
|
762
|
-
``KEY_NORMALIZE``.
|
763
|
-
|
764
|
-
.. Caution::
|
765
|
-
|
766
|
-
This release has backward incompatible changes against ``table_list`` and
|
767
|
-
``column_list`` commands. If you use own program which depends on the output
|
768
|
-
results above commands, you need to support null instead of "null" string.
|
769
|
-
|
770
|
-
This release has supported ``--normalizer`` option, but there is
|
771
|
-
side effect for this feature. If you open old version of groonga
|
772
|
-
database at least once, you can not open its database by old
|
773
|
-
version of groonga.
|
774
|
-
|
775
|
-
There is also another backward incompatible change agaist plugin API for
|
776
|
-
tokenizer. The argument of ``grn_tokenizer_query_open`` API has changed.
|
777
|
-
This API change affects developer of tokenizer plugin.
|
778
|
-
|
779
|
-
Improvements
|
780
|
-
^^^^^^^^^^^^
|
781
|
-
|
782
|
-
* [doc] Added documentation about :ref:`nested-index-search`.
|
783
|
-
* Supported the expression as :doc:`/reference/functions/snippet_html` arguments.
|
784
|
-
This change enables you to use ``snippet_html("STRING" + "STRING")`` for example.
|
785
|
-
You can specify column name or literal for "STRING". [Reported by Tomoatsu Shimada]
|
786
|
-
* Supported to create own normalizer as a plugin.
|
787
|
-
* Moved ``groonga-query-log-analyzer`` as
|
788
|
-
`groonga-query-log <http://rubygems.org/gems/groonga-query-log>`_ RubyGems.
|
789
|
-
It enables you to analyze query logs without installing groonga package.
|
790
|
-
* Supported ``--normalizer`` option for :doc:`/reference/commands/table_create` command.
|
791
|
-
This change enables you to specify normalizer plugin.
|
792
|
-
* Changed "null" string to null value as meaning for "No Object".
|
793
|
-
This is backward incompatible change and affects output results of introspection
|
794
|
-
related commands such as ``table_list`` and ``column_list``.
|
795
|
-
* Added a flag which controls behavior about normalizer as the last argument
|
796
|
-
of ``grn_tokenizer_query_open`` API.
|
797
|
-
* Supported continuous line in :ref:`command-list-with-continuous-line` list.
|
798
|
-
* Improved to support not only no key table, but also hash table, patricia trie
|
799
|
-
and double array trie for :ref:`nested-index-search`.
|
800
|
-
|
801
|
-
Fixes
|
802
|
-
^^^^^
|
803
|
-
|
804
|
-
* [windows] Added missing ``O_BINARY`` flag to open file correctly.
|
805
|
-
This change fixes the infinite loop problem about groonga HTTP server.
|
806
|
-
[GitHub#47] [Patch by Shimomura Tatsuya]
|
807
|
-
* Fixed a bug that ``--default-match-escalation-threshold`` doesn't accept
|
808
|
-
negative value to disable functionality.
|
809
|
-
This fix enable you to disable search escalation.
|
810
|
-
see :option:`--default-match-escalation-threshold` about details.
|
811
|
-
* Fixed a bug that ``_score`` after "*" is ignored in ``--output_columns``.
|
812
|
-
|
813
|
-
Thanks
|
814
|
-
^^^^^^
|
815
|
-
|
816
|
-
* Tomoatsu Shimada
|
817
|
-
* Shimomura Tatsuya
|
818
|
-
|
819
|
-
.. _release-2-0-9:
|
820
|
-
|
821
|
-
Release 2.0.9 - 2012/11/29
|
822
|
-
--------------------------
|
823
|
-
|
824
|
-
Improvements
|
825
|
-
^^^^^^^^^^^^
|
826
|
-
|
827
|
-
* Supported to calculate the value of distance accross border
|
828
|
-
in ``geo_distance`` with ``rectangle`` as approximate type. [#1534]
|
829
|
-
* [doc] Added the :doc:`/spec/gqtp` specification.
|
830
|
-
* Improved to ignore non critical ``getaddrinfo()`` error which groonga command emits on startup.
|
831
|
-
This change does not affects nomal use of groonga because it just checked whether default hostname
|
832
|
-
is resolved in previous version.
|
833
|
-
* [experimental] Added ``snippet_html()`` function which extract keyword and surrounding text.
|
834
|
-
See :doc:`/reference/functions/snippet_html` about details.
|
835
|
-
* Supported to report error reason when error occured during reading table record.
|
836
|
-
* Supported to search with keyword by nested index notation ( concatinate multiple
|
837
|
-
indexed column name with dot character ) if there is a relationship between
|
838
|
-
multiple table with index.
|
839
|
-
* Supported to log "[tokenizer][mecab]" tag when using ``TokenMecab`` tokenizer.
|
840
|
-
* Supported to log "[tokenizer][kytea]" tag when using ``TokenKyTea`` tokenizer.
|
841
|
-
* Improved to use separated array for command error location as output results.
|
842
|
-
This change is incompatibility change, but does not affects existing program.
|
843
|
-
* Added documentation for :doc:`/reference/command/output_format`.
|
844
|
-
* Added documentation for :doc:`/reference/command/return_code` of output results.
|
845
|
-
* Supported range search by using index.
|
846
|
-
|
847
|
-
Fixes
|
848
|
-
^^^^^
|
849
|
-
|
850
|
-
* Fixed to use network byte order for status code of :ref:`gqtp-header-spec` to follow
|
851
|
-
the normal network protocol convention.
|
852
|
-
This change affects that groonga <= 2.0.8 client which connects to groonga server 2.0.9
|
853
|
-
or later can not show status code properly when command failed.
|
854
|
-
* Fixed a bug that UTF-8 normalization computes wrong offset which affects to return value
|
855
|
-
of ``snippet_html()``. This change not to insert tag of snippet into invalid location.
|
856
|
-
[#1531] [Reported by Tomoatsu Shimada]
|
857
|
-
* [windows] Fixed over allocated memory access which cause segmentation fault
|
858
|
-
on startup by groonga command. [#1532] [Patch by Akio Tajima]
|
859
|
-
* [windows] Fixed a bug that data stored in column couldn't be read when total amount of data
|
860
|
-
stored in column exceeds 128MB. [groonga-dev,01088] [Reported by ongaeshi]
|
861
|
-
* Fixed a bug that searching with indexed column for ``Int*`` and ``UInt*``
|
862
|
-
except ``Int32/Uint32`` returns invalid results.
|
863
|
-
* Fixed a bug that deleting record can be found.
|
864
|
-
* Fixed a bug that latin1 and koi8r normalizations could not process all string data
|
865
|
-
if given string contains NULL character on the way.
|
866
|
-
* Fixed to return the correct default value of type when no data stored in column is
|
867
|
-
referenced by ``select`` command.
|
868
|
-
* Fixed to exclude the value of vector column metadata in :ref:`offline-index-construction`.
|
869
|
-
This change not to contain such a metadata as search results.
|
870
|
-
|
871
|
-
Thanks
|
872
|
-
^^^^^^
|
873
|
-
|
874
|
-
* Tomoatsu Shimada
|
875
|
-
* Akio Tajima
|
876
|
-
* ongaeshi
|
877
|
-
|
878
|
-
|
879
|
-
.. _release-2-0-8:
|
880
|
-
|
881
|
-
Release 2.0.8 - 2012/10/29
|
882
|
-
--------------------------
|
883
|
-
|
884
|
-
Improvements
|
885
|
-
^^^^^^^^^^^^
|
886
|
-
|
887
|
-
* [rpm] Improved the description of server-http and httpd packages.
|
888
|
-
[Suggested by Daiki Ueno]
|
889
|
-
* Supported custom query expansion by plugin.
|
890
|
-
* [experimental] Added query expander ``QueryExpanderTSV`` plugin.
|
891
|
-
* Supported Ubuntu 12.10 Quantal Quetzal
|
892
|
-
* [experimental] Supported function call in ``output_columns``.
|
893
|
-
* [doc][rpm] Add missing description about installing MeCab dictionary.
|
894
|
-
[Reported by serihiro]
|
895
|
-
|
896
|
-
Fixes
|
897
|
-
^^^^^
|
898
|
-
|
899
|
-
* [rpm] Fixed to remove needless "Requires" from spec file.
|
900
|
-
[Reported by Daiki Ueno]
|
901
|
-
* [rpm] Fixed inaccurate description about license of groonga-server-gqtp.
|
902
|
-
* [admin] Fixed record edit button shows wrong record. [GitHub#34]
|
903
|
-
[Reported by firewood]
|
904
|
-
* [deb] Fixed to remove needless dependency to pcre.
|
905
|
-
* [deb] Fixed to bundle missing table plugin.
|
906
|
-
|
907
|
-
Thanks
|
908
|
-
^^^^^^
|
909
|
-
|
910
|
-
* Daiki Ueno
|
911
|
-
* firewood
|
912
|
-
* serihiro
|
913
|
-
|
914
|
-
.. _release-2-0-7:
|
915
|
-
|
916
|
-
Release 2.0.7 - 2012/09/29
|
917
|
-
--------------------------
|
918
|
-
|
919
|
-
Improvements
|
920
|
-
^^^^^^^^^^^^
|
921
|
-
|
922
|
-
* [doc] Added more descriptions about ``--query_flags``.
|
923
|
-
* [doc][httpd] Added sample configuration for gzip compression.
|
924
|
-
* [httpd][rpm][centos] Added groonga-httpd init script.
|
925
|
-
* [rpm] Added logrotate config files.
|
926
|
-
* Supported creating database during install process.
|
927
|
-
* [httpd] Supported ``groonga_database_auto_create`` directive.
|
928
|
-
* Supported score respected merge by set operation. [GitHub#31]
|
929
|
-
* [httpd] Supported ``load`` command by POST.
|
930
|
-
* Added error check for creating temporary result set. [GitHub#33]
|
931
|
-
* Added GQTP server package.
|
932
|
-
* Added ``max()`` function.
|
933
|
-
* Added ``min()`` function.
|
934
|
-
|
935
|
-
Fixes
|
936
|
-
^^^^^
|
937
|
-
|
938
|
-
* Fixed to set domain to vector elements to ``load`` command. [GitHub#30]
|
939
|
-
* [httpd] Fixed missing NULL initialization. [Reported by @Kiske]
|
940
|
-
* [httpd] Fixed missing size about ``content_type_len``.
|
941
|
-
* [rpm][fedora] Fixed to use ``--bind-address`` in ``groonga.service``.
|
942
|
-
* Fixed crash by invalid argument filter. [GitHub#32]
|
943
|
-
* Fixed a bug that Time -> Time cast breaks value.
|
944
|
-
* Fixed a bug that Time -> Float cast breaks value.
|
945
|
-
|
946
|
-
Thanks
|
947
|
-
^^^^^^
|
948
|
-
|
949
|
-
* @Kiske
|
950
|
-
|
951
|
-
.. _release-2-0-6:
|
952
|
-
|
953
|
-
Release 2.0.6 - 2012/08/29
|
954
|
-
--------------------------
|
955
|
-
|
956
|
-
Improvements
|
957
|
-
^^^^^^^^^^^^
|
958
|
-
|
959
|
-
* [deb][rpm] Added ``groonga-server-common`` meta package. [#1451]
|
960
|
-
* Supported ``--query_flags`` option to ``select`` command.
|
961
|
-
* Supported PCRE auto detection for groonga-httpd.
|
962
|
-
* [doc] Added information about Twitter and Facebook.
|
963
|
-
* Improved to show error message from MeCab on ``mecab_new2()`` failure.
|
964
|
-
* [doc] Added details about groonga for server use.
|
965
|
-
* Improved to log details about ``vm.overcommit_memory``.
|
966
|
-
* Supported custom selector definition.
|
967
|
-
* Supported ``--working-directory`` option for groonga.
|
968
|
-
* Supported ``dump`` command for groonga-httpd.
|
969
|
-
* Improved to show not found target name for ``clearlock`` command.
|
970
|
-
* Improved error messages about ``get`` command implemented by table plugin.
|
971
|
-
* [rpm][centos] Supported MeCab 0.994. [#1455]
|
972
|
-
[Suggested by IWAI, Masaharu]
|
973
|
-
* Supported changing default logger's max level before ``grn_init()``.
|
974
|
-
* Added ``all_records()`` function which copies all record IDs to the result table.
|
975
|
-
* Supported '-WORD' in ``--query`` of the select command.
|
976
|
-
|
977
|
-
Fixes
|
978
|
-
^^^^^
|
979
|
-
|
980
|
-
* [doc] Fixed the execution examples. [#1428]
|
981
|
-
[Reported by IWAI, Masaharu]
|
982
|
-
* [deb] Fixed not to force groonga user/group by init script for groonga-httpd.
|
983
|
-
* [rpm][fedora] Fixed missing stop parameter for groonga-httpd service.
|
984
|
-
* Fixed a bug that the last 1 byte for cache key is ignored by ``select`` command.
|
985
|
-
* Fixed detection of the number of arguments in the complex function call.
|
986
|
-
* Fixed to suppress a warning by Clang.
|
987
|
-
* Fixed backward incompatibility about missing ``add`` command related error
|
988
|
-
by executing ``clearlock`` command.
|
989
|
-
* [windows] Fixed database open failure which is related to binary data.
|
990
|
-
[Reported by @yito]
|
991
|
-
|
992
|
-
Thanks
|
993
|
-
^^^^^^
|
994
|
-
|
995
|
-
* IWAI, Masaharu
|
996
|
-
* @yito
|
997
|
-
|
998
|
-
|
999
|
-
.. _release-2-0-5:
|
1000
|
-
|
1001
|
-
Release 2.0.5 - 2012/07/29
|
1002
|
-
--------------------------
|
1003
|
-
|
1004
|
-
Improvements
|
1005
|
-
^^^^^^^^^^^^
|
1006
|
-
|
1007
|
-
* Supported calculating the value of distance with "rect" or "rectangle"
|
1008
|
-
argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]
|
1009
|
-
* [doc] Added some literals description in script syntax.
|
1010
|
-
* Supported other directory build for groonga-suggest and groonga-httpd.
|
1011
|
-
* Supported ";" as a query parameter separator. [#1406]
|
1012
|
-
[Suggested by IWAI, Masaharu]
|
1013
|
-
* [doc] Added descriptions about script syntax.
|
1014
|
-
* Supported near search by ``'column *N "word1 word2 ..."'`` in script syntax.
|
1015
|
-
[#1423]
|
1016
|
-
* [doc] Added a description about limitation of suffix search.
|
1017
|
-
* Supported near search for ``_key`` pseudo column. [GitHub#19]
|
1018
|
-
* [doc] Added basic ECMAScript related syntaxes.
|
1019
|
-
* [doc] Updated a description about :doc:`/reference/functions/geo_distance`.
|
1020
|
-
* [rpm][fedora] Supported Fedora 17.
|
1021
|
-
* [rpm][fedora] Dropped Fedora 16 support.
|
1022
|
-
* Supported logical not ``"!"`` operator. [GitHub#22]
|
1023
|
-
* [httpd] Supported per location groonga database.
|
1024
|
-
* Improved to return error messages while load command is processing.
|
1025
|
-
* Improved to exit load command when an uncontinuable error occurred.
|
1026
|
-
* Improved to stop load command for invalid --columns value.
|
1027
|
-
* Supported to open locked database. [GitHub#21]
|
1028
|
-
|
1029
|
-
Fixes
|
1030
|
-
^^^^^
|
1031
|
-
|
1032
|
-
* Fixed a build problem about groonga-httpd on Mac OS X.
|
1033
|
-
[Reported by SHIMADA Koji]
|
1034
|
-
* Fixed not to use installed groonga's header files for groonga-httpd.
|
1035
|
-
* Fixed a build problem about groonga on Mac OS X Lion.
|
1036
|
-
* [doc] Fixed a description of :doc:`/reference/commands/table_remove` command.
|
1037
|
-
* Fixed infinite loop problem for not implemented operator without index.
|
1038
|
-
[GitHub#20]
|
1039
|
-
* Fixed a wrong error code which causes memory leaks.
|
1040
|
-
* Fixed a wrong error code which collapse ja columns.
|
1041
|
-
* [admin] Fixed to escape error message.
|
1042
|
-
* Fixed to ignore unloadable objects which causes database incompatible.
|
1043
|
-
[#1429] [Reported by IWAI, Masaharu]
|
1044
|
-
|
1045
|
-
Thanks
|
1046
|
-
^^^^^^
|
1047
|
-
|
1048
|
-
* SHIMADA Koji
|
1049
|
-
* IWAI, Masaharu
|
1050
|
-
|
1051
|
-
|
1052
|
-
.. _release-2-0-4:
|
1053
|
-
|
1054
|
-
Release 2.0.4 - 2012/06/29
|
1055
|
-
--------------------------
|
1056
|
-
|
1057
|
-
Improvements
|
1058
|
-
^^^^^^^^^^^^
|
1059
|
-
|
1060
|
-
* Supported only KyTea 0.4.2.
|
1061
|
-
* Dropped KyTea 0.4.1 or ealier support.
|
1062
|
-
* [experimental] Supported nginx based groonga HTTP interface.
|
1063
|
-
* Supported calculating the value of distance with "rect" or "rectangle"
|
1064
|
-
argument in northern hemisphere. [#1386] [#1387] [#1388] [#1389]
|
1065
|
-
* [doc] Added a document about :doc:`/development/travis-ci` integration.
|
1066
|
-
* [doc] Added descriptions about full text search and phrase search.
|
1067
|
-
See :ref:`full-text-search-condition` and :ref:`phrase-search-condition`
|
1068
|
-
about detail.
|
1069
|
-
* [doc] Added descriptions about comparison conditions.
|
1070
|
-
See :ref:`conditional-expression` about detail.
|
1071
|
-
* [doc] Added examples for :doc:`/reference/grn_expr/query_syntax`.
|
1072
|
-
* [doc] Added descriptions about :ref:`combined-expression`.
|
1073
|
-
* [doc] Added descriptions about :ref:`prefix-search-condition` and
|
1074
|
-
:ref:`suffix-search-condition`.
|
1075
|
-
* Supported suffix search by index.
|
1076
|
-
* [doc] Added a document about :doc:`/reference/grn_expr`.
|
1077
|
-
* [munin] Supported JSON library installed by RubyGems [GitHub#17]
|
1078
|
-
[Patch by IWAI, Masaharu]
|
1079
|
-
* [doc] Updated the description of how to specify a value as Time in tutorial.
|
1080
|
-
[#1405] [Reported by IWAI, Masaharu]
|
1081
|
-
* [rpm] Removed groonga-tokenizer-mecab dependency from groonga package.
|
1082
|
-
[GitHub#18] [Patch by IWAI, Masaharu]
|
1083
|
-
|
1084
|
-
Fixes
|
1085
|
-
^^^^^
|
1086
|
-
|
1087
|
-
* Fixed a problem that display of command prompt changes to not intended state
|
1088
|
-
by using batch mode on Mac OS X.
|
1089
|
-
[Reported by @soundkitchen]
|
1090
|
-
* Fixed not to terminate after an invalid command in client mode. [#1305]
|
1091
|
-
* Fixed a problem that '=R' is treated as 'OR' in ``--query`` syntax. [#1393]
|
1092
|
-
|
1093
|
-
Thanks
|
1094
|
-
^^^^^^
|
1095
|
-
|
1096
|
-
* @soundkitchen
|
1097
|
-
* IWAI, Masaharu
|
1098
|
-
|
1099
|
-
.. _release-2-0-3:
|
1100
|
-
|
1101
|
-
Release 2.0.3 - 2012/05/29
|
1102
|
-
--------------------------
|
1103
|
-
|
1104
|
-
Improvements
|
1105
|
-
^^^^^^^^^^^^
|
1106
|
-
|
1107
|
-
* [doc] Added about release procedure.
|
1108
|
-
* Removed restriction that the max number of opened files is 4096.
|
1109
|
-
* [experimental] Added table plugin.
|
1110
|
-
* [doc] Added more descriptions about :doc:`/reference/commands/select` command.
|
1111
|
-
* [doc] Made execution example copy & paste friendly.
|
1112
|
-
* [windows] Supported build with Visual Studio 2010 Express and
|
1113
|
-
CMake. See :doc:`/install/windows` about details.
|
1114
|
-
* [doc][solaris] Added a document about building on Solaris.
|
1115
|
-
See :doc:`/install/solaris` about details.
|
1116
|
-
* [doc][yum] Updated epel-release package version.
|
1117
|
-
[Reported by IWAI, Masaharu]
|
1118
|
-
* [doc][cenos6] Disabled Repoforge for Munin for CentOS 6.
|
1119
|
-
[Reported by IWAI, Masaharu]
|
1120
|
-
* Started distributing source archive in zip format.
|
1121
|
-
* [munin] groonga_dist Munin plugin supported an object that has
|
1122
|
-
separated files.
|
1123
|
-
* Started using Travis CI.
|
1124
|
-
* [yum] Changed RPM package name that provides yum repository from
|
1125
|
-
groonga-repository to groonga-release to follow RPM package name
|
1126
|
-
convension such as centos-release and fedora-release.
|
1127
|
-
|
1128
|
-
Fixes
|
1129
|
-
^^^^^
|
1130
|
-
|
1131
|
-
* [doc] Fixed a command to update yum repository.
|
1132
|
-
[Suggested by IWAI, Masaharu]
|
1133
|
-
* [deb] Fixed a bug that log_repoen command in logrotate uses wrong protocol.
|
1134
|
-
* Fixed broken ERROR tag in XML response.
|
1135
|
-
[#1363] [GitHub#13] [Patch by IWAI, Masaharu]
|
1136
|
-
* Fixed a bug that grn_ctx isn't fully cleared by grn_ctx_fin().
|
1137
|
-
* Fixed a bug that ``&!`` set operation doesn't work with grouped
|
1138
|
-
expression. [#1372]
|
1139
|
-
* Fixed a bug that a record key registered via index source isn't normalized.
|
1140
|
-
|
1141
|
-
Thanks
|
1142
|
-
^^^^^^
|
1143
|
-
|
1144
|
-
* IWAI, Masaharu
|
1145
|
-
|
1146
|
-
.. _release-2-0-2:
|
1147
|
-
|
1148
|
-
Release 2.0.2 - 2012/04/29
|
1149
|
-
--------------------------
|
1150
|
-
|
1151
|
-
.. caution::
|
1152
|
-
|
1153
|
-
The package sign key is changed since this release. Import the new
|
1154
|
-
package sign key before updating groogna packages.
|
1155
|
-
|
1156
|
-
Debian/Ubuntu::
|
1157
|
-
|
1158
|
-
% sudo apt-get update
|
1159
|
-
% sudo apt-get -y --allow-unauthenticated install groonga-keyring
|
1160
|
-
|
1161
|
-
CentOS/Fedora::
|
1162
|
-
|
1163
|
-
% sudo yum makecache
|
1164
|
-
% sudo yum install --nogpgcheck -y groonga-repository
|
1165
|
-
|
1166
|
-
Improvements
|
1167
|
-
^^^^^^^^^^^^
|
1168
|
-
|
1169
|
-
* [pkg-config] Removed needless MessagePack dependency.
|
1170
|
-
* [rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]
|
1171
|
-
* [rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]
|
1172
|
-
* [groonga] Improved daemoinzed timing. Groonga server daemonizes
|
1173
|
-
after socket is listened. It means that groonga server is ready when
|
1174
|
-
groonga server is daemonized. [#1326]
|
1175
|
-
* [admin] Supported suggest in groonga administration page.
|
1176
|
-
* [dump] Ignored MeCab tokenizer load error.
|
1177
|
-
* Supported CMake.
|
1178
|
-
* [load] Supported error report when a column value can't be set.
|
1179
|
-
* Supported similar search. ``select --filter "column *S 'TEXT'"``
|
1180
|
-
is the similar search syntax. [#1342]
|
1181
|
-
* [apt][yum] Changed package sign key.
|
1182
|
-
* Supported Ubuntu Precise Pangolin.
|
1183
|
-
* [apt] Added a new groonga-keyring deb package for the groonga's
|
1184
|
-
package sign key.
|
1185
|
-
|
1186
|
-
Fixes
|
1187
|
-
^^^^^
|
1188
|
-
|
1189
|
-
* [deb][rpm] Used ``--bind-address`` option instead of deprecated
|
1190
|
-
``--address`` option.
|
1191
|
-
[#1320] [Patch by IWAI, Masaharu]
|
1192
|
-
* [deb] Renamed groonga-server package's configuration file to
|
1193
|
-
/etc/default/groonga-server from /etc/default/groonga.
|
1194
|
-
* [rpm][fedora] Fixed upgrade condition in %post server.
|
1195
|
-
[GitHub#11] [Patch by Daiki Ueno]
|
1196
|
-
* [rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]
|
1197
|
-
* [deb][rpm] Added missing curl dependency.
|
1198
|
-
[GitHub#12] [Patch by IWAI, Masaharu]
|
1199
|
-
* [rpm] Removed needleess ruby package dependency from groonga package.
|
1200
|
-
[#1330] [Suggested by IWAI, Masaharu]
|
1201
|
-
* [deb] Added missing default values to groonga-server's
|
1202
|
-
configuration file.
|
1203
|
-
* Fixed a crash bug that is caused when searching with updaging very large
|
1204
|
-
inverted index. [#1329]
|
1205
|
-
* Fixed a bug that strings are compared as characters instead of byte string.
|
1206
|
-
[#1340] [Reported by Shinya Kawaji]
|
1207
|
-
|
1208
|
-
Thanks
|
1209
|
-
^^^^^^
|
1210
|
-
|
1211
|
-
* IWAI, Masaharu
|
1212
|
-
* Daiki Ueno
|
1213
|
-
* Shinya Kawaji
|
1214
|
-
|
1215
|
-
.. _release-2-0-1:
|
1216
|
-
|
1217
|
-
Release 2.0.1 - 2012/03/29
|
1218
|
-
--------------------------
|
1219
|
-
|
1220
|
-
Improvements
|
1221
|
-
^^^^^^^^^^^^
|
1222
|
-
|
1223
|
-
* Supported build in other directory.
|
1224
|
-
[#1298] [Reported by Kazuhiko]
|
1225
|
-
* [solaris] Supported build on Solaris 11. [Reported by Kazuhiko]
|
1226
|
-
* [test] Supported functional test.
|
1227
|
-
* [test] Required ``--with-ruby19`` configure option for testing by Ruby.
|
1228
|
-
* [dump] Supported records dump for a table that has default tokenizer.
|
1229
|
-
* [suggest] Added ``similar_search`` option.
|
1230
|
-
* [groonga] Removed deprecated options, ``-a``, ``--address`` and
|
1231
|
-
``--admin-html-path``.
|
1232
|
-
* Added more return value checks. [GitHub#9] [Reported by Markus Elfring]
|
1233
|
-
* [dat] Supported term extract operation.
|
1234
|
-
* Added `logos <http://groonga.org/logo/>`_ .
|
1235
|
-
* Updated HTML design.
|
1236
|
-
* Renamed ``grntest`` to ``groonga-benchmark``.
|
1237
|
-
* Supported ``autogen.sh`` on CentOS 5.
|
1238
|
-
* [linux] Added ``vm.overcommit_memory`` kernel parameter value
|
1239
|
-
check. [#1289]
|
1240
|
-
* ``grn_snip`` uses ``grn_obj`` mechanism. [#1054]
|
1241
|
-
|
1242
|
-
Fixes
|
1243
|
-
^^^^^
|
1244
|
-
|
1245
|
-
* Fixed a bug that uninstall task doesn't uninstall installed Ruby
|
1246
|
-
scripts. [#1299] [Reported by Kazuhiko]
|
1247
|
-
* Added a missing Gemfile. [#1302] [Reported by Kazuhiko]
|
1248
|
-
* Fixed a bug that some indexed records aren't found. The feature is
|
1249
|
-
only used by mroonga. [#1303]
|
1250
|
-
* [groonga] Appended missing ``-id`` to ``--server-id`` option name.
|
1251
|
-
* Fixed a bug that latin1 normalization may access unexpected memory.
|
1252
|
-
|
1253
|
-
Thanks
|
1254
|
-
^^^^^^
|
1255
|
-
|
1256
|
-
* Kazuhiko
|
1257
|
-
* Markus Elfring
|
1258
|
-
|
1259
|
-
.. _release-2-0-0:
|
1260
|
-
|
1261
|
-
Release 2.0.0 - 2012/02/29
|
1262
|
-
--------------------------
|
1263
|
-
|
1264
|
-
Improvements
|
1265
|
-
^^^^^^^^^^^^
|
1266
|
-
|
1267
|
-
* [dat] Added 0 length key check.
|
1268
|
-
* [windows] Added missing GCC related DLLs. [groonga-dev,00686]
|
1269
|
-
[Reported by Suzuki]
|
1270
|
-
* [php] Supported PHP 5.4. [Patch by Daiki Ueno]
|
1271
|
-
* Updated FSF address. [Suggested by Daiki Ueno]
|
1272
|
-
* [fedora] Supported systemd. [Patch by Daiki Ueno]
|
1273
|
-
* [rpm][debian] Changed the default protocol to HTTP from gqtp.
|
1274
|
-
* [rpm][centos] Supported status command.
|
1275
|
-
* Removed needless ``:`` from log message.
|
1276
|
-
* Removed deprecated grn_query. [#1247]
|
1277
|
-
* Reduced needless grn_ctx_at() calls on creating table.
|
1278
|
-
* [pat] Supported cache.
|
1279
|
-
* [tokenizer] Improved tokenizer API.
|
1280
|
-
* Accepted ``@`` as a valid name character.
|
1281
|
-
* [tokenizer] Added a tokenizer based on
|
1282
|
-
`KyTea <http://www.phontron.com/kytea/>`_.
|
1283
|
-
* Supported :doc:`offline index construction </reference/indexing>`.
|
1284
|
-
* [tokenizer] Supported MeCab 0.993. [groonga-dev,00703]
|
1285
|
-
[Reported by Masaharu YOSHIOKA]
|
1286
|
-
* [windows] Supported MessagePack.
|
1287
|
-
|
1288
|
-
Fixes
|
1289
|
-
^^^^^
|
1290
|
-
|
1291
|
-
* [pat] Fixed a bug that the last node can't be found. [#1258]
|
1292
|
-
* [doc] Fixed links in Japanese page. [Reported by @naoina]
|
1293
|
-
* [doc] Fixed wrong the default value. [Reported by @naoina]
|
1294
|
-
* Fixed a typo. [Reported by Kazuhiko]
|
1295
|
-
* [http] Fixed a bug that ``load`` command error isn't cleared.
|
1296
|
-
[Reported by @wareohji]
|
1297
|
-
|
1298
|
-
Thanks
|
1299
|
-
^^^^^^
|
1300
|
-
|
1301
|
-
* Suzuki
|
1302
|
-
* Daiki Ueno
|
1303
|
-
* @naoina
|
1304
|
-
* Kazuhiko
|
1305
|
-
* Masaharu YOSHIOKA
|
1306
|
-
* @wareohji
|
1307
|
-
|
1308
|
-
.. _release-1-3-0:
|
1309
|
-
|
1310
|
-
Release 1.3.0 - 2012/01/29
|
1311
|
-
--------------------------
|
1312
|
-
|
1313
|
-
Improvements
|
1314
|
-
^^^^^^^^^^^^
|
1315
|
-
|
1316
|
-
* Supported dynamic DB key table change by
|
1317
|
-
GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.
|
1318
|
-
* Added ``--with-default-db-key`` configure option that
|
1319
|
-
specifies the default DB key table.
|
1320
|
-
* Supported "" value for geo point data types. It's interpreted as "0x0".
|
1321
|
-
* Added column name to cast error message.
|
1322
|
-
* Inhibit file information for stdin on load error.
|
1323
|
-
* Enabled write-strings warnings and suppress those
|
1324
|
-
warnings. [Suggested by montywi]
|
1325
|
-
* Marked MessagePack output format as supported. [#1215]
|
1326
|
-
* Added ``const`` to ``void *`` of ``*_set_value()``.
|
1327
|
-
* Enabled warning flags on C and C++.
|
1328
|
-
* Supported ``--with-libevent`` without value configure option.
|
1329
|
-
* ``grn_table_get()`` supported grn_db. [#1242]
|
1330
|
-
* [rpm] Removed needless groogna-munin-plugins dependency
|
1331
|
-
from groonga-server. [#1251] [Suggested by Masaharu IWAI]
|
1332
|
-
* [rpm] Removed needless groogna-doc dependency
|
1333
|
-
from groonga. [#1251] [Suggested by Masaharu IWAI]
|
1334
|
-
* [dat] Supported repair by ``grn_dat_repair()``.
|
1335
|
-
* ``grn_table_at()`` supported grn_db.
|
1336
|
-
* [suggest] Removed unstable mark.
|
1337
|
-
* [suggest][complete] Supported normalized value search in prefix-search.
|
1338
|
-
* Added experimental offline index build. It's disabled by
|
1339
|
-
default for now. You can enable it by
|
1340
|
-
USE_OFFLINE_INDEXER=yes environment variable.
|
1341
|
-
* Added internal API ``grn_obj_path_by_id()`` for mroonga.
|
1342
|
-
* [suggest][httpd] Passed unknown parameters to groonga.
|
1343
|
-
* [output][xml] Added a newline before ``</RESULT>`` for readability.
|
1344
|
-
* [doc][output] Added documentation about output format type.
|
1345
|
-
* Added ``table_rename``. [#1234]
|
1346
|
-
* Added ``column_rename``. [#1234]
|
1347
|
-
|
1348
|
-
Thanks
|
1349
|
-
^^^^^^
|
1350
|
-
|
1351
|
-
* montywi
|
1352
|
-
* Masaharu IWAI
|
1353
|
-
|
1354
306
|
The old releases
|
1355
307
|
----------------
|
1356
308
|
|
1357
309
|
.. toctree::
|
1358
310
|
:maxdepth: 2
|
1359
311
|
|
312
|
+
news/3.x
|
313
|
+
news/2.x
|
314
|
+
news/1.3.x
|
1360
315
|
news/1.2.x
|
1361
316
|
news/1.1.x
|
1362
317
|
news/1.0.x
|