rroonga 4.0.5-x64-mingw32 → 4.0.6-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/.yardopts +1 -1
- data/benchmark/common.rb +4 -4
- data/benchmark/create-wikipedia-database.rb +5 -5
- data/benchmark/read-write-many-small-items.rb +8 -8
- data/benchmark/repeat-load.rb +4 -4
- data/benchmark/select.rb +9 -9
- data/benchmark/write-many-small-items.rb +8 -8
- data/doc/images/sample-schema.png +0 -0
- data/doc/text/install.textile +2 -2
- data/doc/text/news.textile +41 -0
- data/doc/text/tutorial.textile +4 -4
- data/example/bookmark.rb +6 -7
- data/example/index-html.rb +6 -6
- data/ext/groonga/extconf.rb +23 -1
- data/ext/groonga/rb-grn-column.c +3 -2
- data/ext/groonga/rb-grn-context.c +20 -3
- data/ext/groonga/rb-grn-double-array-trie.c +11 -2
- data/ext/groonga/rb-grn-exception.c +28 -10
- data/ext/groonga/rb-grn-expression.c +78 -0
- data/ext/groonga/rb-grn-hash.c +10 -0
- data/ext/groonga/rb-grn-logger.c +7 -3
- data/ext/groonga/rb-grn-object.c +3 -2
- data/ext/groonga/rb-grn-patricia-trie.c +23 -20
- data/ext/groonga/rb-grn-table-key-support.c +92 -1
- data/ext/groonga/rb-grn-table.c +60 -17
- data/ext/groonga/rb-grn-utils.c +51 -2
- data/ext/groonga/rb-grn-variable-size-column.c +11 -7
- data/ext/groonga/rb-grn.h +11 -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/dumper.rb +23 -1
- data/lib/groonga/patricia-trie.rb +1 -1
- data/lib/groonga/schema.rb +190 -205
- data/misc/grnop2ruby.rb +1 -1
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -0
- data/test/groonga-test-utils.rb +2 -2
- data/test/test-column.rb +19 -0
- data/test/test-context.rb +5 -1
- data/test/test-double-array-trie.rb +19 -0
- data/test/test-exception.rb +7 -2
- data/test/test-expression.rb +19 -0
- data/test/test-fix-size-column.rb +49 -36
- data/test/test-hash.rb +22 -0
- data/test/test-patricia-trie.rb +26 -7
- data/test/test-schema-dumper.rb +65 -1
- data/test/test-schema.rb +13 -2
- data/test/test-variable-size-column.rb +6 -5
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-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/libonig-5.dll +0 -0
- data/vendor/local/bin/mecab-config +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +0 -0
- data/vendor/local/include/groonga/groonga.h +21 -6
- data/vendor/local/include/groonga/groonga/token_filter.h +71 -0
- data/vendor/local/include/groonga/groonga/tokenizer.h +33 -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 +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +1 -1
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.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 +2 -2
- 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 +2 -2
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +41 -0
- 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/groonga/scripts/ruby/context/rc.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -2
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -1
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- 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/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/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/client.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +1 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- 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 +6 -6
- 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 +3 -3
- 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 +68 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +23 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt +46 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +15 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +23 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +14 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{geolocation_search.txt → reference/operations/geolocation_search.txt} +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest.txt +0 -1
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/completion.txt +6 -6
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/correction.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/{suggest → reference/suggest}/introduction.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -2
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +1 -0
- data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/client.html +134 -0
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +86 -86
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +66 -66
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +105 -105
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/development.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/genindex.html +23 -7
- data/vendor/local/share/doc/groonga/en/html/index.html +215 -230
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/limitations.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/news.html +129 -59
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +154 -135
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -39
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +74 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +52 -51
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +98 -98
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +62 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +68 -68
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +39 -39
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +44 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +62 -62
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +140 -140
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/{suggest/tutorial.html → reference/operations.html} +31 -23
- data/vendor/local/share/doc/groonga/en/html/{geolocation_search.html → reference/operations/geolocation_search.html} +39 -34
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/{suggest.html → reference/suggest.html} +50 -48
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/completion.html +51 -49
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/correction.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/introduction.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/suggestion.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/server/http.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +44 -44
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/server/package.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/spec.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/client.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +1 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- 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 +6 -6
- 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 +3 -3
- 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 +68 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +23 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt +46 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +15 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +23 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +14 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{geolocation_search.txt → reference/operations/geolocation_search.txt} +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest.txt +0 -1
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/completion.txt +6 -6
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/correction.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/{suggest → reference/suggest}/introduction.txt +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/client.html +132 -0
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +86 -86
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +66 -66
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +109 -109
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/development.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +27 -11
- data/vendor/local/share/doc/groonga/ja/html/index.html +215 -230
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/news.html +131 -63
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +154 -135
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +74 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +79 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +52 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +98 -98
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +62 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +54 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +68 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +39 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +50 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +54 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +64 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +143 -143
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/{suggest/tutorial.html → reference/operations.html} +31 -23
- data/vendor/local/share/doc/groonga/ja/html/{geolocation_search.html → reference/operations/geolocation_search.html} +40 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/{suggest.html → reference/suggest.html} +51 -49
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/completion.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/correction.html +48 -47
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/introduction.html +44 -42
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/suggestion.html +48 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +44 -44
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/spec.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +0 -0
- 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/init-db.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +4911 -4427
- data/vendor/local/share/man/man1/groonga.1 +9023 -8517
- metadata +117 -109
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt +0 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt +0 -8
@@ -7,6 +7,74 @@
|
|
7
7
|
News
|
8
8
|
====
|
9
9
|
|
10
|
+
.. _release-4-0-7:
|
11
|
+
|
12
|
+
Release 4.0.7 - 2014/10/29
|
13
|
+
--------------------------
|
14
|
+
|
15
|
+
Improvements
|
16
|
+
^^^^^^^^^^^^
|
17
|
+
|
18
|
+
* [windows] Supported Groonga with mruby on Windows.
|
19
|
+
* Added token filter plugin API.
|
20
|
+
* Added :ref:`token-filter-stop-word` token filter plugin.
|
21
|
+
It treats records of ``is_stop_word`` column as actual stop words.
|
22
|
+
* [doc] Added :doc:`/client` section which introduces link to client libraries.
|
23
|
+
[GitHub#210] [Patch by Naoya Murakami]
|
24
|
+
* [doc] Reconstructed documentation. :doc:`/reference/suggest` and
|
25
|
+
:doc:`/reference/operations/geolocation_search` are grouped under :doc:`/reference`.
|
26
|
+
[GitHub#206] [Patch by Naoya Murakami]
|
27
|
+
* [dump] Supports to dump TABLE_NO_KEY for token_flters.
|
28
|
+
[GitHub#215] [Patch by Naoya Murakami]
|
29
|
+
* [deb] Added stop word token filter plugin.
|
30
|
+
[GitHub#216] [Patch by Hiroshi Hatake]
|
31
|
+
* [deb] Clarified licenses about used/bundled files in debian/copyright.
|
32
|
+
* Dropped LZO compression support.
|
33
|
+
* Added LZ4 compression support. [GitHub#223] [Patch by Naoya Murakami]
|
34
|
+
* Added :doc:`/reference/function/in_values`. We recommends to use it
|
35
|
+
instead of ``==`` and ``OR`` combinations ( ``((COLUMN == "a") OR
|
36
|
+
(COLUMN == "b") OR (COLUMN == "c"))`` ) because of better
|
37
|
+
performance.
|
38
|
+
* [load] Supported to update existing record in ``TABLE_NO_KEY`` by
|
39
|
+
specifying a record by ``_id``.
|
40
|
+
* Added :ref:`token-filter-stem` token filter plugin. It provides
|
41
|
+
stemming feature. To use this token filter, you need to install
|
42
|
+
`libstemmer <http://http://snowball.tartarus.org/>`_ library.
|
43
|
+
* [doc] Added :doc:`/reference/token_filters` documentation.
|
44
|
+
[GitHub#227] [Patch by Naoya Murakami]
|
45
|
+
|
46
|
+
Fixes
|
47
|
+
^^^^^
|
48
|
+
|
49
|
+
* [doc] Fixed link of the Ranguba project. [GitHub#212] [Patch by Naoya Murakami]
|
50
|
+
* [httpd] Updated bundled nginx version to 1.7.6.
|
51
|
+
[GitHub#208] [Patch by Hiroshi Hatake]
|
52
|
+
* [power8] Fixed build failure. See
|
53
|
+
http://lists.askmonty.org/pipermail/commits/2014-October/006752.html
|
54
|
+
[Patch by Sergey Vojtovich]
|
55
|
+
* Fixed a bug that URL encoding fails if ``char`` type is build as
|
56
|
+
``unsigned char`` type. [GitHub#217]
|
57
|
+
* Fixed a bug that a ``TABLE_DAT_KEY`` table returns empty results for
|
58
|
+
:doc:`/reference/commands/select`. [GitHub#220]
|
59
|
+
* Fixed a memory leak about inspecting vector column. It occurs when
|
60
|
+
something error reports about vector column.
|
61
|
+
* Fixed memory leaks in zlib/LZO compressed column [GitHub#221] [Patch
|
62
|
+
by Naoya Murakami]
|
63
|
+
* Fixed a bug that the value of ``Int8`` column which is less than 100 may
|
64
|
+
return true in ``--filter``. By this issue, not intended records may
|
65
|
+
be included as search results.
|
66
|
+
* Fixed to handle binary operation for vector column as an error.
|
67
|
+
* Fixed a bug that ``!XXX`` may return inverted result on big endian
|
68
|
+
environment.
|
69
|
+
* Fixed a memory leak on converting weight vector to text.
|
70
|
+
|
71
|
+
Thanks
|
72
|
+
^^^^^^
|
73
|
+
|
74
|
+
* Naoya Murakami
|
75
|
+
* Hiroshi Hatake
|
76
|
+
* Sergey Vojtovich
|
77
|
+
|
10
78
|
.. _release-4-0-6:
|
11
79
|
|
12
80
|
Release 4.0.6 - 2014/09/29
|
@@ -23,8 +91,6 @@ Improvements
|
|
23
91
|
[GitHub#196] [Patch by Masafumi Yokoyama]
|
24
92
|
* [OS X] Added missing sphinx error message for Homebrew users.
|
25
93
|
[GitHub#198] [Patch by cosmo0920]
|
26
|
-
* Exported :c:func:`grn_expr_alloc_const` which allocates constant object.
|
27
|
-
It is exported for mruby.
|
28
94
|
* [mruby] Query optimizer by mruby became a practical for some range select query.
|
29
95
|
For example, mruby optimizer overhead is negligible enough for query such as
|
30
96
|
"between(X, 0, 'exclude', 100, 'include')" - "X > 0 && X <= 100".
|
@@ -37,14 +103,11 @@ Improvements
|
|
37
103
|
:doc:`/reference/commands/column_create`. If source column doesn't
|
38
104
|
exist, :doc:`/reference/commands/column_create` returns ``false`` and
|
39
105
|
column isn't created.
|
40
|
-
* [windows] Enabled mruby.
|
41
106
|
* [debian] Dropped Debian jessie and sid support.
|
42
107
|
|
43
108
|
Fixes
|
44
109
|
^^^^^
|
45
110
|
|
46
|
-
* [windows] Disabled KyTea by default because of redistribution license issue.
|
47
|
-
* [windows] Disabled libedit support by default.
|
48
111
|
* Fixed a bug that similar search doesn't use IDF (Inverse Document Frequency)
|
49
112
|
for choosing target tokens.
|
50
113
|
In the previous versions, it used token ID instead of IDF.
|
@@ -194,7 +194,7 @@ Improvements
|
|
194
194
|
* Accepted "#" and "-" as a valid name characters. #1043
|
195
195
|
* Accepted all valid characters except "_" as the first character. #1043
|
196
196
|
* Supported `--each` for `[...]` form :doc:`/reference/commands/load`. #1044
|
197
|
-
* Added documentation for :doc:`/suggest`.
|
197
|
+
* Added documentation for :doc:`/reference/suggest`.
|
198
198
|
* Supported threshold as `--frequency_threshold` and
|
199
199
|
`--conditional_probability_threshold` options in all
|
200
200
|
:doc:`/reference/commands/suggest` types. #1042
|
@@ -142,7 +142,7 @@ Improvements
|
|
142
142
|
* [gqtp] Supported error message. The body is changed to return
|
143
143
|
raw text insted of double quoted text. This is incompatible changes.
|
144
144
|
* [http] Supported "400 Bad request" for invalid argument error.
|
145
|
-
* [doc] Added examples for :doc:`/suggest/completion`
|
145
|
+
* [doc] Added examples for :doc:`/reference/suggest/completion`
|
146
146
|
* Supported Ubuntu 13.10 (Saucy Salamander).
|
147
147
|
|
148
148
|
Fixes
|
@@ -17,10 +17,13 @@ Reference manual
|
|
17
17
|
reference/column
|
18
18
|
reference/normalizers
|
19
19
|
reference/tokenizers
|
20
|
+
reference/token_filters
|
20
21
|
reference/query_expanders
|
21
22
|
reference/pseudo_column
|
22
23
|
reference/grn_expr
|
23
24
|
reference/function
|
25
|
+
reference/operations
|
26
|
+
reference/suggest
|
24
27
|
reference/indexing
|
25
28
|
reference/log
|
26
29
|
reference/tuning
|
@@ -117,3 +117,26 @@ Reference
|
|
117
117
|
ctx、またはctxが使用するdbからidに対応するオブジェクトを検索して返す。idに一致するオブジェクトが存在しなければNULLを返す。
|
118
118
|
|
119
119
|
:param id: 検索しようとするオブジェクトのidを指定します。
|
120
|
+
|
121
|
+
.. c:function:: grn_content_type grn_ctx_get_output_type(grn_ctx *ctx)
|
122
|
+
|
123
|
+
Gets the current output type of the context.
|
124
|
+
|
125
|
+
Normally, this function isn't needed.
|
126
|
+
|
127
|
+
:param ctx: The context object.
|
128
|
+
:return: The output type of the context.
|
129
|
+
|
130
|
+
.. c:function:: grn_rc grn_ctx_set_output_type(grn_ctx *ctx, grn_content_type type)
|
131
|
+
|
132
|
+
Sets the new output type to the context. It is used by executing a
|
133
|
+
command by :c:func:`grn_expr_exec()`. If you use
|
134
|
+
:c:func:`grn_ctx_send()`, the new output type isn't
|
135
|
+
used. :c:func:`grn_ctx_send()` sets output type from command line
|
136
|
+
internally.
|
137
|
+
|
138
|
+
Normally, this function isn't needed.
|
139
|
+
|
140
|
+
:param ctx: The context object.
|
141
|
+
:param type: The new output type.
|
142
|
+
:return: ``GRN_SUCCESS`` on success, not ``GRN_SUCCESS`` on error.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
.. -*- rst -*-
|
2
2
|
|
3
|
-
.. highlightlang::
|
3
|
+
.. highlightlang:: c
|
4
4
|
|
5
5
|
grn_expr
|
6
6
|
========
|
@@ -48,6 +48,51 @@ Reference
|
|
48
48
|
|
49
49
|
.. c:function:: GRN_API grn_rc grn_expr_append_op(grn_ctx *ctx, grn_obj *expr, grn_operator op, int nargs)
|
50
50
|
|
51
|
+
.. c:function:: grn_rc grn_expr_get_keywords(grn_ctx *ctx, grn_obj *expr, grn_obj *keywords)
|
52
|
+
|
53
|
+
Extracts keywords from ``expr`` and stores to
|
54
|
+
``keywords``. Keywords in ``keywords`` are owned by ``expr``. Don't
|
55
|
+
unlink them. Each keyword is ``GRN_BULK`` and its domain is
|
56
|
+
``GRN_DB_TEXT``.
|
57
|
+
|
58
|
+
``keywords`` must be ``GRN_PVECTOR``.
|
59
|
+
|
60
|
+
Here is an example code::
|
61
|
+
|
62
|
+
grn_obj keywords;
|
63
|
+
GRN_PTR_INIT(&keywords, GRN_OBJ_VECTOR, GRN_ID_NIL);
|
64
|
+
grn_expr_get_keywords(ctx, expr, &keywords);
|
65
|
+
{
|
66
|
+
int i, n_keywords;
|
67
|
+
n_keywords = GRN_BULK_VSIZE(&keywords) / sizeof(grn_obj *);
|
68
|
+
for (i = 0; i < n_keywords; i++) {
|
69
|
+
grn_obj *keyword = GRN_PTR_VALUE_AT(&keywords, i);
|
70
|
+
const char *keyword_content;
|
71
|
+
int keyword_size;
|
72
|
+
keyword_content = GRN_TEXT_VALUE(keyword);
|
73
|
+
keyword_size = GRN_TEXT_LEN(keyword);
|
74
|
+
/*
|
75
|
+
Use keyword_content and keyword_size.
|
76
|
+
You don't need to unlink keyword.
|
77
|
+
keyword is owned by expr.
|
78
|
+
*/
|
79
|
+
}
|
80
|
+
}
|
81
|
+
GRN_OBJ_FIN(ctx, &keywords);
|
82
|
+
|
83
|
+
|
84
|
+
:param ctx: The context that creates the ``expr``.
|
85
|
+
:param expr: The expression to be extracted.
|
86
|
+
:param keywords: The container to store extracted keywords.
|
87
|
+
It must be ``GRN_PVECTOR``.
|
88
|
+
|
89
|
+
Each extracted keyword is ``GRN_BULK`` and its
|
90
|
+
domain is ``GRN_DB_TEXT``.
|
91
|
+
|
92
|
+
Extracted keywords are owned by ``expr``. Don't
|
93
|
+
unlink them.
|
94
|
+
:return: ``GRN_SUCCESS`` on success, not ``GRN_SUCCESS`` on error.
|
95
|
+
|
51
96
|
.. c:function:: grn_rc grn_expr_syntax_escape(grn_ctx *ctx, const char *string, int string_size, const char *target_characters, char escape_character, grn_obj *escaped_string)
|
52
97
|
|
53
98
|
Escapes ``target_characters`` in ``string`` by ``escape_character``.
|
@@ -22,7 +22,7 @@ suggest - returns completion, correction and/or suggestion for a query.
|
|
22
22
|
The suggest command returns completion, correction and/or
|
23
23
|
suggestion for a specified query.
|
24
24
|
|
25
|
-
See :doc:`/suggest/introduction` about completion,
|
25
|
+
See :doc:`/reference/suggest/introduction` about completion,
|
26
26
|
correction and suggestion.
|
27
27
|
|
28
28
|
Syntax
|
@@ -257,5 +257,5 @@ Here is a returned JSON format::
|
|
257
257
|
See also
|
258
258
|
--------
|
259
259
|
|
260
|
-
* :doc:`/suggest`
|
260
|
+
* :doc:`/reference/suggest`
|
261
261
|
* :doc:`/reference/executables/groonga-suggest-create-dataset`
|
@@ -26,6 +26,7 @@ Syntax
|
|
26
26
|
[value_type=null]
|
27
27
|
[default_tokenizer=null]
|
28
28
|
[normalizer=null]
|
29
|
+
[token_filters=null]
|
29
30
|
|
30
31
|
Usage
|
31
32
|
-----
|
@@ -267,6 +268,20 @@ See :doc:`/reference/normalizers` for all normalizsers.
|
|
267
268
|
|
268
269
|
The default value is none.
|
269
270
|
|
271
|
+
.. _table-create-token-filters:
|
272
|
+
|
273
|
+
``token_filters``
|
274
|
+
^^^^^^^^^^^^^^^^^^
|
275
|
+
|
276
|
+
It specifies token filters that is used to some processes tokenized token.
|
277
|
+
|
278
|
+
You cannot use ``token_filters`` with ``TABLE_NO_KEY`` because
|
279
|
+
``TABLE_NO_KEY`` doesn't support key.
|
280
|
+
|
281
|
+
See :doc:`/reference/token_filters` for all token filters.
|
282
|
+
|
283
|
+
The default value is none.
|
284
|
+
|
270
285
|
Return value
|
271
286
|
------------
|
272
287
|
|
@@ -26,6 +26,7 @@ optional::
|
|
26
26
|
[normalizer=null]
|
27
27
|
[flags=NONE]
|
28
28
|
[mode=ADD]
|
29
|
+
[token_filters=NONE]
|
29
30
|
|
30
31
|
Usage
|
31
32
|
-----
|
@@ -51,6 +52,8 @@ Required parameters
|
|
51
52
|
|
52
53
|
There are required parameters, ``tokenizer`` and ``string``.
|
53
54
|
|
55
|
+
.. _tokenize-tokenizer:
|
56
|
+
|
54
57
|
``tokenizer``
|
55
58
|
"""""""""""""
|
56
59
|
|
@@ -70,6 +73,8 @@ tokenizer plugin by :doc:`register` command. For example, you can use
|
|
70
73
|
`KyTea <http://www.phontron.com/kytea/>`_ based tokenizer by
|
71
74
|
registering ``tokenizers/kytea``.
|
72
75
|
|
76
|
+
.. _tokenize-string:
|
77
|
+
|
73
78
|
``string``
|
74
79
|
""""""""""
|
75
80
|
|
@@ -89,6 +94,8 @@ Optional parameters
|
|
89
94
|
|
90
95
|
There are optional parameters.
|
91
96
|
|
97
|
+
.. _tokenize-normalizer:
|
98
|
+
|
92
99
|
``normalizer``
|
93
100
|
""""""""""""""
|
94
101
|
|
@@ -128,6 +135,8 @@ If you want to tokenize by two characters with noramlizer, use
|
|
128
135
|
All alphabets are tokenized by two characters. And they are normalized
|
129
136
|
to lower case characters. For example, ``fu`` is a token.
|
130
137
|
|
138
|
+
.. _tokenize-flags:
|
139
|
+
|
131
140
|
``flags``
|
132
141
|
"""""""""
|
133
142
|
|
@@ -164,6 +173,8 @@ string. So the character is good character for this puropose. If
|
|
164
173
|
treated as already tokenized string. Tokenizer just tokenizes by
|
165
174
|
tokenized delimiter.
|
166
175
|
|
176
|
+
.. _tokenize-mode:
|
177
|
+
|
167
178
|
``mode``
|
168
179
|
""""""""
|
169
180
|
|
@@ -190,6 +201,18 @@ Here is an example to the ``GET`` mode.
|
|
190
201
|
|
191
202
|
The last alphabet is tokenized by two characters.
|
192
203
|
|
204
|
+
.. _tokenize-token-filters:
|
205
|
+
|
206
|
+
``token_filters``
|
207
|
+
"""""""""""""""""
|
208
|
+
|
209
|
+
It specifies the token filter names. ``tokenize`` command uses the
|
210
|
+
tokenizer that is named ``token_filters``.
|
211
|
+
|
212
|
+
See :doc:`/reference/token_filters` about token filters.
|
213
|
+
|
214
|
+
.. _tokenize-return-value:
|
215
|
+
|
193
216
|
Return value
|
194
217
|
------------
|
195
218
|
|
@@ -20,9 +20,9 @@ SYNOPSTIS
|
|
20
20
|
DESCTIPION
|
21
21
|
----------
|
22
22
|
|
23
|
-
groonga-suggest-create-dataset creates a dataset for :doc:`/suggest`. A database has many datasets. This command just defines schema for a suggestion dataset.
|
23
|
+
groonga-suggest-create-dataset creates a dataset for :doc:`/reference/suggest`. A database has many datasets. This command just defines schema for a suggestion dataset.
|
24
24
|
|
25
|
-
This command generates some tables and columns for :doc:`/suggest`.
|
25
|
+
This command generates some tables and columns for :doc:`/reference/suggest`.
|
26
26
|
|
27
27
|
Here is the list of such tables. If you specify 'query' as dataset name, following '_DATASET' suffix are replaced. Thus, 'item_query', 'pair_query', 'sequence_query', 'event_query' tables are generated.
|
28
28
|
|
@@ -58,6 +58,6 @@ TODO
|
|
58
58
|
SEE ALSO
|
59
59
|
--------
|
60
60
|
|
61
|
-
:doc:`/suggest`
|
61
|
+
:doc:`/reference/suggest`
|
62
62
|
:doc:`groonga-suggest-httpd`
|
63
63
|
:doc:`groonga-suggest-learner`
|
@@ -42,7 +42,7 @@ You can use groonga as a library and create a grn_expr by calling
|
|
42
42
|
grn_expr related APIs. You can use full features with calling APIs
|
43
43
|
like :doc:`/reference/grn_expr/script_syntax`. Calling APIs is useful
|
44
44
|
creating a custom syntax to create grn_expr. They are used in `rroonga
|
45
|
-
<http://
|
45
|
+
<http://ranguba.org/#about-rroonga>`_ that is Ruby bindings
|
46
46
|
of Groonga. Rroonga can create a grn_expr by Ruby's syntax instead of
|
47
47
|
parsing string.
|
48
48
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
.. -*- rst -*-
|
2
|
+
.. Groonga Project
|
3
|
+
|
4
|
+
.. highlightlang:: none
|
5
|
+
|
6
|
+
Operations
|
7
|
+
==========
|
8
|
+
|
9
|
+
Groonga has the search feature of multiple. This section describes how to search operations.
|
10
|
+
|
11
|
+
.. toctree::
|
12
|
+
:maxdepth: 2
|
13
|
+
|
14
|
+
operations/geolocation_search
|
File without changes
|
@@ -166,7 +166,7 @@ For example, here is an command to get completion results by
|
|
166
166
|
"en":
|
167
167
|
|
168
168
|
.. groonga-command
|
169
|
-
.. include::
|
169
|
+
.. include:: ../../example/reference/suggest/complete/select.log
|
170
170
|
.. suggest --table item_query --column kana --types complete --frequency_threshold 1 --query en
|
171
171
|
|
172
172
|
How it learns
|
@@ -209,7 +209,7 @@ Groonga requires registered word and its reading for RK search, so load such dat
|
|
209
209
|
Here is the example to register "日本" which means Japanese in english.
|
210
210
|
|
211
211
|
.. groonga-command
|
212
|
-
.. include::
|
212
|
+
.. include:: ../../example/reference/suggest/complete/registered-word-japan.log
|
213
213
|
.. load --table event_query --each 'suggest_preparer(_id, type, item, sequence, time, pair_query)'
|
214
214
|
.. [
|
215
215
|
.. {"sequence": "1", "time": 1312950805.86058, "item": "日本", "type": "submit"}
|
@@ -219,7 +219,7 @@ Here is the example to register "日本" which means Japanese in english.
|
|
219
219
|
Here is the example to update RK data to complete "日本".
|
220
220
|
|
221
221
|
.. groonga-command
|
222
|
-
.. include::
|
222
|
+
.. include:: ../../example/reference/suggest/complete/update-rk-data.log
|
223
223
|
.. load --table item_query
|
224
224
|
.. [
|
225
225
|
.. {"_key":"日本", "kana":["ニホン", "ニッポン"]}
|
@@ -228,7 +228,7 @@ Here is the example to update RK data to complete "日本".
|
|
228
228
|
Then you can complete registered word "日本" by RK input - "nihon".
|
229
229
|
|
230
230
|
.. groonga-command
|
231
|
-
.. include::
|
231
|
+
.. include:: ../../example/reference/suggest/complete/rk-search-nihon.log
|
232
232
|
.. suggest --table item_query --column kana --types complete --frequency_threshold 1 --query nihon
|
233
233
|
|
234
234
|
Without loading above RK data, you can't complete registered word "日本"
|
@@ -241,7 +241,7 @@ This is the reason that you can also complete the registered word "日本"
|
|
241
241
|
by query - "nippon".
|
242
242
|
|
243
243
|
.. groonga-command
|
244
|
-
.. include::
|
244
|
+
.. include:: ../../example/reference/suggest/complete/rk-search-nippon.log
|
245
245
|
.. suggest --table item_query --column kana --types complete --frequency_threshold 1 --query nippon
|
246
246
|
|
247
247
|
This feature is very convenient because you can search registered word
|
@@ -254,7 +254,7 @@ table.
|
|
254
254
|
Here is the example to customize priority for RK search.
|
255
255
|
|
256
256
|
.. groonga-command
|
257
|
-
.. include::
|
257
|
+
.. include:: ../../example/reference/suggest/complete/registered-word-japanese.log
|
258
258
|
.. load --table event_query --each 'suggest_preparer(_id, type, item, sequence, time, pair_query)'
|
259
259
|
.. [
|
260
260
|
.. {"sequence": "1", "time": 1312950805.86059, "item": "日本語", "type": "submit"}
|