rroonga 2.1.2-x86-mingw32 → 2.1.3-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/doc/text/news.textile +29 -0
- data/doc/text/tutorial.textile +176 -199
- data/ext/groonga/extconf.rb +16 -2
- data/ext/groonga/rb-grn-logger.c +214 -202
- data/ext/groonga/rb-grn-object.c +1 -23
- data/ext/groonga/rb-grn-table-cursor.c +1 -2
- data/ext/groonga/rb-grn-table.c +1 -2
- data/ext/groonga/rb-grn-utils.c +3 -7
- data/ext/groonga/rb-grn.h +2 -16
- data/ext/groonga/rb-groonga.c +1 -3
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/context.rb +27 -0
- data/lib/groonga/dumper.rb +35 -3
- data/lib/groonga/logger.rb +142 -0
- data/lib/groonga.rb +2 -1
- data/rroonga-build.rb +2 -2
- data/test/groonga-test-utils.rb +3 -1
- data/test/test-context.rb +63 -0
- data/test/test-logger.rb +1 -0
- 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/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +48 -7
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +3 -3
- 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 +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/pkgconfig/groonga.pc +5 -3
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +6 -4
- 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 +3 -3
- 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 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +50 -22
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +46 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +135 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/log.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +17 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +192 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +2 -14
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +193 -138
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/community.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +8 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/development.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/genindex.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/index.html +22 -18
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +25 -14
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/others.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +47 -25
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -10
- data/vendor/local/share/doc/groonga/en/html/limitations.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news.html +148 -97
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +8 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +9 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +403 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +29 -31
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +10 -12
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference.html +14 -16
- data/vendor/local/share/doc/groonga/en/html/search.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +16 -18
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +43 -45
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +14 -16
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/server/http.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/server/package.html +375 -0
- data/vendor/local/share/doc/groonga/en/html/server.html +23 -19
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/spec.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +6 -4
- 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 +3 -3
- 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 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +50 -22
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +46 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +135 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/log.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +17 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +192 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +2 -14
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +192 -137
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/community.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +11 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/development.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/index.html +28 -24
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +47 -20
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -10
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news.html +135 -97
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +8 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +13 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +9 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +394 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +31 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +82 -134
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +15 -17
- data/vendor/local/share/doc/groonga/ja/html/reference.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/search.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +16 -18
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +43 -45
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +14 -16
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +372 -0
- data/vendor/local/share/doc/groonga/ja/html/server.html +23 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/spec.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +7 -9
- data/vendor/local/share/man/ja/man1/groonga.1 +849 -276
- data/vendor/local/share/man/man1/groonga.1 +814 -144
- data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
- data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
- metadata +883 -1287
- data/ext/groonga/rb-grn-view-accessor.c +0 -53
- data/ext/groonga/rb-grn-view-cursor.c +0 -35
- data/ext/groonga/rb-grn-view-record.c +0 -41
- data/ext/groonga/rb-grn-view.c +0 -414
- data/test/test-schema-view.rb +0 -90
- data/test/test-view.rb +0 -71
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html +0 -196
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html +0 -197
- data/vendor/local/share/doc/groonga/source/__init__.py +0 -0
- data/vendor/local/share/doc/groonga/source/characteristic.txt +0 -69
- data/vendor/local/share/doc/groonga/source/community.txt +0 -37
- data/vendor/local/share/doc/groonga/source/conf.py +0 -272
- data/vendor/local/share/doc/groonga/source/contribution/development/com.txt +0 -20
- data/vendor/local/share/doc/groonga/source/contribution/development/document.txt +0 -40
- data/vendor/local/share/doc/groonga/source/contribution/development/query.txt +0 -214
- data/vendor/local/share/doc/groonga/source/contribution/development/release.txt +0 -661
- data/vendor/local/share/doc/groonga/source/contribution/development/test.txt +0 -116
- data/vendor/local/share/doc/groonga/source/contribution/development.txt +0 -12
- data/vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt +0 -14
- data/vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt +0 -198
- data/vendor/local/share/doc/groonga/source/contribution/documentation.txt +0 -16
- data/vendor/local/share/doc/groonga/source/contribution/report.txt +0 -28
- data/vendor/local/share/doc/groonga/source/contribution.txt +0 -26
- data/vendor/local/share/doc/groonga/source/development/travis-ci.txt +0 -61
- data/vendor/local/share/doc/groonga/source/development.txt +0 -15
- data/vendor/local/share/doc/groonga/source/example/completion-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/correction-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/register/query_expanders_tsv.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log +0 -32
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log +0 -74
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log +0 -52
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log +0 -131
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log +0 -12
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log +0 -90
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log +0 -18
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/reference/commands/status.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log +0 -12
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log +0 -14
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log +0 -77
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/data_store_table_no_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/lexicon_table_pat_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/tag_index_table_hash_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_equator.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_meridian.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_the_date_line.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log +0 -15
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log +0 -13
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage.log +0 -28
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_basic.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_setup.log +0 -17
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_string_literal.log +0 -28
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log +0 -92
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log +0 -53
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log +0 -51
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log +0 -53
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log +0 -92
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log +0 -52
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log +0 -51
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log +0 -39
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-data.log +0 -9
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log +0 -27
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/example-load.log +0 -46
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/example-table-create.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/normalizer-auto.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/normalizer-nfkc51.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +0 -48
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +0 -57
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-4.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-5.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-6.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-7.log +0 -46
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-8.log +0 -54
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log +0 -23
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +0 -78
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log +0 -85
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +0 -113
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log +0 -74
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +0 -24
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-2.log +0 -105
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +0 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-4.log +0 -84
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-5.log +0 -78
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-6.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-7.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +0 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +0 -129
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +0 -22
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +0 -27
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log +0 -15
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log +0 -137
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log +0 -19
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log +0 -137
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log +0 -23
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log +0 -30
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema.log +0 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log +0 -98
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log +0 -89
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +0 -73
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log +0 -54
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log +0 -58
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log +0 -37
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +0 -24
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-3.log +0 -89
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log +0 -45
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log +0 -102
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +0 -70
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +0 -80
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +0 -84
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +0 -150
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-4.log +0 -43
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-5.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-7.log +0 -31
- data/vendor/local/share/doc/groonga/source/geolocation_search.txt +0 -52
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg +0 -188
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg +0 -501
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg +0 -275
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg +0 -899
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg +0 -249
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg +0 -275
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg +0 -743
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg +0 -261
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg +0 -228
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg +0 -241
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg +0 -602
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg +0 -917
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg +0 -561
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg +0 -389
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg +0 -469
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg +0 -514
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg +0 -595
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg +0 -424
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg +0 -549
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg +0 -241
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg +0 -203
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg +0 -264
- data/vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.svg +0 -317
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg +0 -306
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg +0 -304
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.svg +0 -383
- data/vendor/local/share/doc/groonga/source/images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.svg +0 -296
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg +0 -287
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg +0 -174
- data/vendor/local/share/doc/groonga/source/index.txt +0 -33
- data/vendor/local/share/doc/groonga/source/install/centos.txt +0 -152
- data/vendor/local/share/doc/groonga/source/install/debian.txt +0 -136
- data/vendor/local/share/doc/groonga/source/install/fedora.txt +0 -82
- data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +0 -53
- data/vendor/local/share/doc/groonga/source/install/others.txt +0 -267
- data/vendor/local/share/doc/groonga/source/install/solaris.txt +0 -43
- data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +0 -196
- data/vendor/local/share/doc/groonga/source/install/windows.txt +0 -87
- data/vendor/local/share/doc/groonga/source/install.txt +0 -28
- data/vendor/local/share/doc/groonga/source/limitations.txt +0 -29
- data/vendor/local/share/doc/groonga/source/news/0.x.txt +0 -126
- data/vendor/local/share/doc/groonga/source/news/1.0.x.txt +0 -289
- data/vendor/local/share/doc/groonga/source/news/1.1.x.txt +0 -31
- data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +0 -386
- data/vendor/local/share/doc/groonga/source/news/senna.txt +0 -109
- data/vendor/local/share/doc/groonga/source/news.txt +0 -632
- data/vendor/local/share/doc/groonga/source/rdoc.py +0 -762
- data/vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/api.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/cast.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/command/command_version.txt +0 -75
- data/vendor/local/share/doc/groonga/source/reference/command/output_format.txt +0 -228
- data/vendor/local/share/doc/groonga/source/reference/command/return_code.txt +0 -110
- data/vendor/local/share/doc/groonga/source/reference/command.txt +0 -20
- data/vendor/local/share/doc/groonga/source/reference/commands/cache_limit.txt +0 -54
- data/vendor/local/share/doc/groonga/source/reference/commands/check.txt +0 -166
- data/vendor/local/share/doc/groonga/source/reference/commands/clearlock.txt +0 -63
- data/vendor/local/share/doc/groonga/source/reference/commands/column_create.txt +0 -95
- data/vendor/local/share/doc/groonga/source/reference/commands/column_list.txt +0 -111
- data/vendor/local/share/doc/groonga/source/reference/commands/column_remove.txt +0 -60
- data/vendor/local/share/doc/groonga/source/reference/commands/define_selector.txt +0 -116
- data/vendor/local/share/doc/groonga/source/reference/commands/defrag.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/commands/delete.txt +0 -72
- data/vendor/local/share/doc/groonga/source/reference/commands/dump.txt +0 -91
- data/vendor/local/share/doc/groonga/source/reference/commands/load.txt +0 -100
- data/vendor/local/share/doc/groonga/source/reference/commands/log_level.txt +0 -67
- data/vendor/local/share/doc/groonga/source/reference/commands/log_put.txt +0 -71
- data/vendor/local/share/doc/groonga/source/reference/commands/log_reopen.txt +0 -68
- data/vendor/local/share/doc/groonga/source/reference/commands/quit.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/commands/register.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/commands/select.txt +0 -894
- data/vendor/local/share/doc/groonga/source/reference/commands/shutdown.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/commands/status.txt +0 -60
- data/vendor/local/share/doc/groonga/source/reference/commands/suggest.txt +0 -270
- data/vendor/local/share/doc/groonga/source/reference/commands/table_create.txt +0 -286
- data/vendor/local/share/doc/groonga/source/reference/commands/table_list.txt +0 -81
- data/vendor/local/share/doc/groonga/source/reference/commands/table_remove.txt +0 -52
- data/vendor/local/share/doc/groonga/source/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt +0 -104
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt +0 -80
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt +0 -105
- data/vendor/local/share/doc/groonga/source/reference/executables/grnslap.txt +0 -66
- data/vendor/local/share/doc/groonga/source/reference/executables/grntest.txt +0 -273
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt +0 -209
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-server-http.txt +0 -56
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-suggest-create-dataset.txt +0 -50
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga.txt +0 -248
- data/vendor/local/share/doc/groonga/source/reference/executables.txt +0 -14
- data/vendor/local/share/doc/groonga/source/reference/function.txt +0 -20
- data/vendor/local/share/doc/groonga/source/reference/functions/edit_distance.txt +0 -48
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt +0 -301
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_in_circle.txt +0 -81
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_in_rectangle.txt +0 -55
- data/vendor/local/share/doc/groonga/source/reference/functions/now.txt +0 -36
- data/vendor/local/share/doc/groonga/source/reference/functions/rand.txt +0 -43
- data/vendor/local/share/doc/groonga/source/reference/functions/snippet_html.txt +0 -120
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt +0 -584
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt +0 -805
- data/vendor/local/share/doc/groonga/source/reference/grn_expr.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/indexing.txt +0 -110
- data/vendor/local/share/doc/groonga/source/reference/log.txt +0 -214
- data/vendor/local/share/doc/groonga/source/reference/normalizers.txt +0 -122
- data/vendor/local/share/doc/groonga/source/reference/output.txt +0 -164
- data/vendor/local/share/doc/groonga/source/reference/pseudo_column.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/query_expanders/tsv.txt +0 -153
- data/vendor/local/share/doc/groonga/source/reference/query_expanders.txt +0 -12
- data/vendor/local/share/doc/groonga/source/reference/tables.txt +0 -163
- data/vendor/local/share/doc/groonga/source/reference/tokenizers.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/types.txt +0 -129
- data/vendor/local/share/doc/groonga/source/reference.txt +0 -24
- data/vendor/local/share/doc/groonga/source/server/gqtp.txt +0 -16
- data/vendor/local/share/doc/groonga/source/server/http/comparison.txt +0 -298
- data/vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt +0 -8
- data/vendor/local/share/doc/groonga/source/server/http/groonga.txt +0 -8
- data/vendor/local/share/doc/groonga/source/server/http.txt +0 -29
- data/vendor/local/share/doc/groonga/source/server.txt +0 -12
- data/vendor/local/share/doc/groonga/source/spec/gqtp.txt +0 -214
- data/vendor/local/share/doc/groonga/source/spec/search.txt +0 -115
- data/vendor/local/share/doc/groonga/source/spec.txt +0 -12
- data/vendor/local/share/doc/groonga/source/suggest/completion.txt +0 -195
- data/vendor/local/share/doc/groonga/source/suggest/correction.txt +0 -148
- data/vendor/local/share/doc/groonga/source/suggest/introduction.txt +0 -96
- data/vendor/local/share/doc/groonga/source/suggest/suggestion.txt +0 -115
- data/vendor/local/share/doc/groonga/source/suggest/tutorial.txt +0 -8
- data/vendor/local/share/doc/groonga/source/suggest.txt +0 -17
- data/vendor/local/share/doc/groonga/source/textile.py +0 -771
- data/vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt +0 -135
- data/vendor/local/share/doc/groonga/source/troubleshooting.txt +0 -12
- data/vendor/local/share/doc/groonga/source/tutorial/data.txt +0 -155
- data/vendor/local/share/doc/groonga/source/tutorial/drilldown.txt +0 -66
- data/vendor/local/share/doc/groonga/source/tutorial/index.txt +0 -118
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +0 -286
- data/vendor/local/share/doc/groonga/source/tutorial/lexicon.txt +0 -11
- data/vendor/local/share/doc/groonga/source/tutorial/match_columns.txt +0 -220
- data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +0 -487
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +0 -142
- data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +0 -53
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +0 -62
- data/vendor/local/share/doc/groonga/source/tutorial/search.txt +0 -121
- data/vendor/local/share/doc/groonga/source/tutorial.txt +0 -21
@@ -1,6 +1,4 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
|
4
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
4
|
|
@@ -9,15 +7,15 @@
|
|
9
7
|
<head>
|
10
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
9
|
|
12
|
-
<title>News — groonga v2.1.
|
10
|
+
<title>News — groonga v2.1.2 documentation</title>
|
13
11
|
|
14
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
15
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
16
14
|
|
17
15
|
<script type="text/javascript">
|
18
16
|
var DOCUMENTATION_OPTIONS = {
|
19
|
-
URL_ROOT: '',
|
20
|
-
VERSION: '2.1.
|
17
|
+
URL_ROOT: './',
|
18
|
+
VERSION: '2.1.2',
|
21
19
|
COLLAPSE_INDEX: false,
|
22
20
|
FILE_SUFFIX: '.html',
|
23
21
|
HAS_SOURCE: true
|
@@ -27,7 +25,7 @@
|
|
27
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
28
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
29
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
30
|
-
<link rel="top" title="groonga v2.1.
|
28
|
+
<link rel="top" title="groonga v2.1.2 documentation" href="index.html" />
|
31
29
|
</head>
|
32
30
|
<body>
|
33
31
|
<div class="header">
|
@@ -53,7 +51,7 @@
|
|
53
51
|
<li class="right" style="margin-right: 10px">
|
54
52
|
<a href="genindex.html" title="General Index"
|
55
53
|
accesskey="I">index</a></li>
|
56
|
-
<li><a href="index.html">groonga v2.1.
|
54
|
+
<li><a href="index.html">groonga v2.1.2 documentation</a> »</li>
|
57
55
|
</ul>
|
58
56
|
</div>
|
59
57
|
|
@@ -64,12 +62,59 @@
|
|
64
62
|
|
65
63
|
<div class="section" id="news">
|
66
64
|
<h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
|
65
|
+
<div class="section" id="release-2-1-2-2013-01-29">
|
66
|
+
<span id="release-2-1-2"></span><h2>Release 2.1.2 - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="Permalink to this headline">¶</a></h2>
|
67
|
+
<div class="section" id="improvements">
|
68
|
+
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
|
+
<ul class="simple">
|
70
|
+
<li>Supported multiple <tt class="docutils literal"><span class="pre">query()</span></tt> in a select command.
|
71
|
+
For example, you can specify the keyword which has different weight such as
|
72
|
+
'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'
|
73
|
+
for <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
74
|
+
<li>Dropped experimental view feature.</li>
|
75
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> API for custom logger.
|
76
|
+
Note that <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> API is deprecated, use <tt class="docutils literal"><span class="pre">grn_logger</span></tt> API instead.</li>
|
77
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> and <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> API.
|
78
|
+
Note that global <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> variable was removed. Use above API.</li>
|
79
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> and
|
80
|
+
<tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> API.
|
81
|
+
Note that global <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> variable was removed. Use above API.</li>
|
82
|
+
<li>Added translated documentation about <a class="reference internal" href="reference/tables.html"><em>Tables</em></a> and <a class="reference internal" href="reference/normalizers.html"><em>Normalizers</em></a>.</li>
|
83
|
+
<li>[deb][rpm] Improved to install with missing dictionary when
|
84
|
+
<tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> package is installed.</li>
|
85
|
+
<li>Supported <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a> with range search.
|
86
|
+
For example, you can specify 'column1.column2...columnN <= "1988-01-04 00:00:00"'
|
87
|
+
in <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
88
|
+
<li>[rpm][fedora] Supported Fedora 18.</li>
|
89
|
+
<li>[rpm][fedora] Dropped Fedora 17 support.</li>
|
90
|
+
<li>[doc] Added documentation for <a class="reference internal" href="server/package.html"><em>Server packages</em></a>.</li>
|
91
|
+
<li>[doc] Added documentation for <a class="reference internal" href="reference/functions/query.html"><em>query</em></a>.</li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
<div class="section" id="fixes">
|
95
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
96
|
+
<ul class="simple">
|
97
|
+
<li>Fixed not to report an error even though MeCab tokenizer shared object
|
98
|
+
isn't found. [groonga-dev,01174] [Reported by wing]</li>
|
99
|
+
<li>[httpd] Fixed not to fail configure on CentOS 5.4 by setting
|
100
|
+
<tt class="docutils literal"><span class="pre">SED</span></tt> variable explicitly.</li>
|
101
|
+
<li>Fixed a crash bug that not initialized vector column value is accessed
|
102
|
+
by select command.</li>
|
103
|
+
</ul>
|
104
|
+
</div>
|
105
|
+
<div class="section" id="thanks">
|
106
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
107
|
+
<ul class="simple">
|
108
|
+
<li>wing</li>
|
109
|
+
</ul>
|
110
|
+
</div>
|
111
|
+
</div>
|
67
112
|
<div class="section" id="release-2-1-1-2012-12-29">
|
68
113
|
<span id="release-2-1-1"></span><h2>Release 2.1.1 - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="Permalink to this headline">¶</a></h2>
|
69
114
|
<p>This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
|
70
115
|
instead.</p>
|
71
|
-
<div class="section" id="
|
72
|
-
<h3>Fixes<a class="headerlink" href="#
|
116
|
+
<div class="section" id="id1">
|
117
|
+
<h3>Fixes<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
73
118
|
<ul class="simple">
|
74
119
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> information in database that is
|
75
120
|
created by groonga 2.0.8 or ealier is dropped.</li>
|
@@ -96,8 +141,8 @@ version of groonga.</p>
|
|
96
141
|
tokenizer. The argument of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API has changed.
|
97
142
|
This API change affects developer of tokenizer plugin.</p>
|
98
143
|
</div>
|
99
|
-
<div class="section" id="
|
100
|
-
<h3>Improvements<a class="headerlink" href="#
|
144
|
+
<div class="section" id="id2">
|
145
|
+
<h3>Improvements<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
101
146
|
<ul class="simple">
|
102
147
|
<li>[doc] Added documentation about <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
103
148
|
<li>Supported the expression as <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> arguments.
|
@@ -119,8 +164,8 @@ of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span
|
|
119
164
|
and double array trie for <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
120
165
|
</ul>
|
121
166
|
</div>
|
122
|
-
<div class="section" id="
|
123
|
-
<h3>Fixes<a class="headerlink" href="#
|
167
|
+
<div class="section" id="id3">
|
168
|
+
<h3>Fixes<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
124
169
|
<ul class="simple">
|
125
170
|
<li>[windows] Added missing <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> flag to open file correctly.
|
126
171
|
This change fixes the infinite loop problem about groonga HTTP server.
|
@@ -132,8 +177,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop
|
|
132
177
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">_score</span></tt> after "*" is ignored in <tt class="docutils literal"><span class="pre">--output_columns</span></tt>.</li>
|
133
178
|
</ul>
|
134
179
|
</div>
|
135
|
-
<div class="section" id="
|
136
|
-
<h3>Thanks<a class="headerlink" href="#
|
180
|
+
<div class="section" id="id4">
|
181
|
+
<h3>Thanks<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
137
182
|
<ul class="simple">
|
138
183
|
<li>Tomoatsu Shimada</li>
|
139
184
|
<li>Shimomura Tatsuya</li>
|
@@ -142,8 +187,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop
|
|
142
187
|
</div>
|
143
188
|
<div class="section" id="release-2-0-9-2012-11-29">
|
144
189
|
<span id="release-2-0-9"></span><h2>Release 2.0.9 - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="Permalink to this headline">¶</a></h2>
|
145
|
-
<div class="section" id="
|
146
|
-
<h3>Improvements<a class="headerlink" href="#
|
190
|
+
<div class="section" id="id5">
|
191
|
+
<h3>Improvements<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
147
192
|
<ul class="simple">
|
148
193
|
<li>Supported to calculate the value of distance accross border
|
149
194
|
in <tt class="docutils literal"><span class="pre">geo_distance</span></tt> with <tt class="docutils literal"><span class="pre">rectangle</span></tt> as approximate type. [#1534]</li>
|
@@ -166,8 +211,8 @@ This change is incompatibility change, but does not affects existing program.</l
|
|
166
211
|
<li>Supported range search by using index.</li>
|
167
212
|
</ul>
|
168
213
|
</div>
|
169
|
-
<div class="section" id="
|
170
|
-
<h3>Fixes<a class="headerlink" href="#
|
214
|
+
<div class="section" id="id6">
|
215
|
+
<h3>Fixes<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
171
216
|
<ul class="simple">
|
172
217
|
<li>Fixed to use network byte order for status code of <a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTP header</em></a> to follow
|
173
218
|
the normal network protocol convention.
|
@@ -191,8 +236,8 @@ referenced by <tt class="docutils literal"><span class="pre">select</span></tt>
|
|
191
236
|
This change not to contain such a metadata as search results.</li>
|
192
237
|
</ul>
|
193
238
|
</div>
|
194
|
-
<div class="section" id="
|
195
|
-
<h3>Thanks<a class="headerlink" href="#
|
239
|
+
<div class="section" id="id7">
|
240
|
+
<h3>Thanks<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
196
241
|
<ul class="simple">
|
197
242
|
<li>Tomoatsu Shimada</li>
|
198
243
|
<li>Akio Tajima</li>
|
@@ -202,8 +247,8 @@ This change not to contain such a metadata as search results.</li>
|
|
202
247
|
</div>
|
203
248
|
<div class="section" id="release-2-0-8-2012-10-29">
|
204
249
|
<span id="release-2-0-8"></span><h2>Release 2.0.8 - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="Permalink to this headline">¶</a></h2>
|
205
|
-
<div class="section" id="
|
206
|
-
<h3>Improvements<a class="headerlink" href="#
|
250
|
+
<div class="section" id="id8">
|
251
|
+
<h3>Improvements<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
207
252
|
<ul class="simple">
|
208
253
|
<li>[rpm] Improved the description of server-http and httpd packages.
|
209
254
|
[Suggested by Daiki Ueno]</li>
|
@@ -215,8 +260,8 @@ This change not to contain such a metadata as search results.</li>
|
|
215
260
|
[Reported by serihiro]</li>
|
216
261
|
</ul>
|
217
262
|
</div>
|
218
|
-
<div class="section" id="
|
219
|
-
<h3>Fixes<a class="headerlink" href="#
|
263
|
+
<div class="section" id="id9">
|
264
|
+
<h3>Fixes<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
220
265
|
<ul class="simple">
|
221
266
|
<li>[rpm] Fixed to remove needless "Requires" from spec file.
|
222
267
|
[Reported by Daiki Ueno]</li>
|
@@ -227,8 +272,8 @@ This change not to contain such a metadata as search results.</li>
|
|
227
272
|
<li>[deb] Fixed to bundle missing table plugin.</li>
|
228
273
|
</ul>
|
229
274
|
</div>
|
230
|
-
<div class="section" id="
|
231
|
-
<h3>Thanks<a class="headerlink" href="#
|
275
|
+
<div class="section" id="id10">
|
276
|
+
<h3>Thanks<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
232
277
|
<ul class="simple">
|
233
278
|
<li>Daiki Ueno</li>
|
234
279
|
<li>firewood</li>
|
@@ -238,8 +283,8 @@ This change not to contain such a metadata as search results.</li>
|
|
238
283
|
</div>
|
239
284
|
<div class="section" id="release-2-0-7-2012-09-29">
|
240
285
|
<span id="release-2-0-7"></span><h2>Release 2.0.7 - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="Permalink to this headline">¶</a></h2>
|
241
|
-
<div class="section" id="
|
242
|
-
<h3>Improvements<a class="headerlink" href="#
|
286
|
+
<div class="section" id="id11">
|
287
|
+
<h3>Improvements<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
243
288
|
<ul class="simple">
|
244
289
|
<li>[doc] Added more descriptions about <tt class="docutils literal"><span class="pre">--query_flags</span></tt>.</li>
|
245
290
|
<li>[doc][httpd] Added sample configuration for gzip compression.</li>
|
@@ -255,8 +300,8 @@ This change not to contain such a metadata as search results.</li>
|
|
255
300
|
<li>Added <tt class="docutils literal"><span class="pre">min()</span></tt> function.</li>
|
256
301
|
</ul>
|
257
302
|
</div>
|
258
|
-
<div class="section" id="
|
259
|
-
<h3>Fixes<a class="headerlink" href="#
|
303
|
+
<div class="section" id="id12">
|
304
|
+
<h3>Fixes<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
260
305
|
<ul class="simple">
|
261
306
|
<li>Fixed to set domain to vector elements to <tt class="docutils literal"><span class="pre">load</span></tt> command. [GitHub#30]</li>
|
262
307
|
<li>[httpd] Fixed missing NULL initialization. [Reported by @Kiske]</li>
|
@@ -267,8 +312,8 @@ This change not to contain such a metadata as search results.</li>
|
|
267
312
|
<li>Fixed a bug that Time -> Float cast breaks value.</li>
|
268
313
|
</ul>
|
269
314
|
</div>
|
270
|
-
<div class="section" id="
|
271
|
-
<h3>Thanks<a class="headerlink" href="#
|
315
|
+
<div class="section" id="id13">
|
316
|
+
<h3>Thanks<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
272
317
|
<ul class="simple">
|
273
318
|
<li>@Kiske</li>
|
274
319
|
</ul>
|
@@ -276,8 +321,8 @@ This change not to contain such a metadata as search results.</li>
|
|
276
321
|
</div>
|
277
322
|
<div class="section" id="release-2-0-6-2012-08-29">
|
278
323
|
<span id="release-2-0-6"></span><h2>Release 2.0.6 - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="Permalink to this headline">¶</a></h2>
|
279
|
-
<div class="section" id="
|
280
|
-
<h3>Improvements<a class="headerlink" href="#
|
324
|
+
<div class="section" id="id14">
|
325
|
+
<h3>Improvements<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
281
326
|
<ul class="simple">
|
282
327
|
<li>[deb][rpm] Added <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> meta package. [#1451]</li>
|
283
328
|
<li>Supported <tt class="docutils literal"><span class="pre">--query_flags</span></tt> option to <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
@@ -298,8 +343,8 @@ This change not to contain such a metadata as search results.</li>
|
|
298
343
|
<li>Supported '-WORD' in <tt class="docutils literal"><span class="pre">--query</span></tt> of the select command.</li>
|
299
344
|
</ul>
|
300
345
|
</div>
|
301
|
-
<div class="section" id="
|
302
|
-
<h3>Fixes<a class="headerlink" href="#
|
346
|
+
<div class="section" id="id15">
|
347
|
+
<h3>Fixes<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
303
348
|
<ul class="simple">
|
304
349
|
<li>[doc] Fixed the execution examples. [#1428]
|
305
350
|
[Reported by IWAI, Masaharu]</li>
|
@@ -314,8 +359,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt
|
|
314
359
|
[Reported by @yito]</li>
|
315
360
|
</ul>
|
316
361
|
</div>
|
317
|
-
<div class="section" id="
|
318
|
-
<h3>Thanks<a class="headerlink" href="#
|
362
|
+
<div class="section" id="id16">
|
363
|
+
<h3>Thanks<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
319
364
|
<ul class="simple">
|
320
365
|
<li>IWAI, Masaharu</li>
|
321
366
|
<li>@yito</li>
|
@@ -324,8 +369,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt
|
|
324
369
|
</div>
|
325
370
|
<div class="section" id="release-2-0-5-2012-07-29">
|
326
371
|
<span id="release-2-0-5"></span><h2>Release 2.0.5 - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="Permalink to this headline">¶</a></h2>
|
327
|
-
<div class="section" id="
|
328
|
-
<h3>Improvements<a class="headerlink" href="#
|
372
|
+
<div class="section" id="id17">
|
373
|
+
<h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
329
374
|
<ul class="simple">
|
330
375
|
<li>Supported calculating the value of distance with "rect" or "rectangle"
|
331
376
|
argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
@@ -350,8 +395,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
350
395
|
<li>Supported to open locked database. [GitHub#21]</li>
|
351
396
|
</ul>
|
352
397
|
</div>
|
353
|
-
<div class="section" id="
|
354
|
-
<h3>Fixes<a class="headerlink" href="#
|
398
|
+
<div class="section" id="id18">
|
399
|
+
<h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
355
400
|
<ul class="simple">
|
356
401
|
<li>Fixed a build problem about groonga-httpd on Mac OS X.
|
357
402
|
[Reported by SHIMADA Koji]</li>
|
@@ -367,8 +412,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
367
412
|
[#1429] [Reported by IWAI, Masaharu]</li>
|
368
413
|
</ul>
|
369
414
|
</div>
|
370
|
-
<div class="section" id="
|
371
|
-
<h3>Thanks<a class="headerlink" href="#
|
415
|
+
<div class="section" id="id19">
|
416
|
+
<h3>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
372
417
|
<ul class="simple">
|
373
418
|
<li>SHIMADA Koji</li>
|
374
419
|
<li>IWAI, Masaharu</li>
|
@@ -377,8 +422,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
377
422
|
</div>
|
378
423
|
<div class="section" id="release-2-0-4-2012-06-29">
|
379
424
|
<span id="release-2-0-4"></span><h2>Release 2.0.4 - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="Permalink to this headline">¶</a></h2>
|
380
|
-
<div class="section" id="
|
381
|
-
<h3>Improvements<a class="headerlink" href="#
|
425
|
+
<div class="section" id="id20">
|
426
|
+
<h3>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
382
427
|
<ul class="simple">
|
383
428
|
<li>Supported only KyTea 0.4.2.</li>
|
384
429
|
<li>Dropped KyTea 0.4.1 or ealier support.</li>
|
@@ -405,8 +450,8 @@ See <a class="reference internal" href="reference/grn_expr/query_syntax.html#con
|
|
405
450
|
[GitHub#18] [Patch by IWAI, Masaharu]</li>
|
406
451
|
</ul>
|
407
452
|
</div>
|
408
|
-
<div class="section" id="
|
409
|
-
<h3>Fixes<a class="headerlink" href="#
|
453
|
+
<div class="section" id="id21">
|
454
|
+
<h3>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
410
455
|
<ul class="simple">
|
411
456
|
<li>Fixed a problem that display of command prompt changes to not intended state
|
412
457
|
by using batch mode on Mac OS X.
|
@@ -415,8 +460,8 @@ by using batch mode on Mac OS X.
|
|
415
460
|
<li>Fixed a problem that '=R' is treated as 'OR' in <tt class="docutils literal"><span class="pre">--query</span></tt> syntax. [#1393]</li>
|
416
461
|
</ul>
|
417
462
|
</div>
|
418
|
-
<div class="section" id="
|
419
|
-
<h3>Thanks<a class="headerlink" href="#
|
463
|
+
<div class="section" id="id22">
|
464
|
+
<h3>Thanks<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
|
420
465
|
<ul class="simple">
|
421
466
|
<li>@soundkitchen</li>
|
422
467
|
<li>IWAI, Masaharu</li>
|
@@ -425,8 +470,8 @@ by using batch mode on Mac OS X.
|
|
425
470
|
</div>
|
426
471
|
<div class="section" id="release-2-0-3-2012-05-29">
|
427
472
|
<span id="release-2-0-3"></span><h2>Release 2.0.3 - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="Permalink to this headline">¶</a></h2>
|
428
|
-
<div class="section" id="
|
429
|
-
<h3>Improvements<a class="headerlink" href="#
|
473
|
+
<div class="section" id="id23">
|
474
|
+
<h3>Improvements<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
430
475
|
<ul class="simple">
|
431
476
|
<li>[doc] Added about release procedure.</li>
|
432
477
|
<li>Removed restriction that the max number of opened files is 4096.</li>
|
@@ -450,8 +495,8 @@ groonga-repository to groonga-release to follow RPM package name
|
|
450
495
|
convension such as centos-release and fedora-release.</li>
|
451
496
|
</ul>
|
452
497
|
</div>
|
453
|
-
<div class="section" id="
|
454
|
-
<h3>Fixes<a class="headerlink" href="#
|
498
|
+
<div class="section" id="id24">
|
499
|
+
<h3>Fixes<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
455
500
|
<ul class="simple">
|
456
501
|
<li>[doc] Fixed a command to update yum repository.
|
457
502
|
[Suggested by IWAI, Masaharu]</li>
|
@@ -464,8 +509,8 @@ expression. [#1372]</li>
|
|
464
509
|
<li>Fixed a bug that a record key registered via index source isn't normalized.</li>
|
465
510
|
</ul>
|
466
511
|
</div>
|
467
|
-
<div class="section" id="
|
468
|
-
<h3>Thanks<a class="headerlink" href="#
|
512
|
+
<div class="section" id="id25">
|
513
|
+
<h3>Thanks<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
469
514
|
<ul class="simple">
|
470
515
|
<li>IWAI, Masaharu</li>
|
471
516
|
</ul>
|
@@ -488,8 +533,8 @@ package sign key before updating groogna packages.</p>
|
|
488
533
|
</pre></div>
|
489
534
|
</div>
|
490
535
|
</div>
|
491
|
-
<div class="section" id="
|
492
|
-
<h3>Improvements<a class="headerlink" href="#
|
536
|
+
<div class="section" id="id26">
|
537
|
+
<h3>Improvements<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
|
493
538
|
<ul class="simple">
|
494
539
|
<li>[pkg-config] Removed needless MessagePack dependency.</li>
|
495
540
|
<li>[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]</li>
|
@@ -509,8 +554,8 @@ is the similar search syntax. [#1342]</li>
|
|
509
554
|
package sign key.</li>
|
510
555
|
</ul>
|
511
556
|
</div>
|
512
|
-
<div class="section" id="
|
513
|
-
<h3>Fixes<a class="headerlink" href="#
|
557
|
+
<div class="section" id="id27">
|
558
|
+
<h3>Fixes<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
514
559
|
<ul class="simple">
|
515
560
|
<li>[deb][rpm] Used <tt class="docutils literal"><span class="pre">--bind-address</span></tt> option instead of deprecated
|
516
561
|
<tt class="docutils literal"><span class="pre">--address</span></tt> option.
|
@@ -532,8 +577,8 @@ inverted index. [#1329]</li>
|
|
532
577
|
[#1340] [Reported by Shinya Kawaji]</li>
|
533
578
|
</ul>
|
534
579
|
</div>
|
535
|
-
<div class="section" id="
|
536
|
-
<h3>Thanks<a class="headerlink" href="#
|
580
|
+
<div class="section" id="id28">
|
581
|
+
<h3>Thanks<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
537
582
|
<ul class="simple">
|
538
583
|
<li>IWAI, Masaharu</li>
|
539
584
|
<li>Daiki Ueno</li>
|
@@ -543,8 +588,8 @@ inverted index. [#1329]</li>
|
|
543
588
|
</div>
|
544
589
|
<div class="section" id="release-2-0-1-2012-03-29">
|
545
590
|
<span id="release-2-0-1"></span><h2>Release 2.0.1 - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="Permalink to this headline">¶</a></h2>
|
546
|
-
<div class="section" id="
|
547
|
-
<h3>Improvements<a class="headerlink" href="#
|
591
|
+
<div class="section" id="id29">
|
592
|
+
<h3>Improvements<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
548
593
|
<ul class="simple">
|
549
594
|
<li>Supported build in other directory.
|
550
595
|
[#1298] [Reported by Kazuhiko]</li>
|
@@ -566,8 +611,8 @@ check. [#1289]</li>
|
|
566
611
|
<li><tt class="docutils literal"><span class="pre">grn_snip</span></tt> uses <tt class="docutils literal"><span class="pre">grn_obj</span></tt> mechanism. [#1054]</li>
|
567
612
|
</ul>
|
568
613
|
</div>
|
569
|
-
<div class="section" id="
|
570
|
-
<h3>Fixes<a class="headerlink" href="#
|
614
|
+
<div class="section" id="id30">
|
615
|
+
<h3>Fixes<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
571
616
|
<ul class="simple">
|
572
617
|
<li>Fixed a bug that uninstall task doesn't uninstall installed Ruby
|
573
618
|
scripts. [#1299] [Reported by Kazuhiko]</li>
|
@@ -578,8 +623,8 @@ only used by mroonga. [#1303]</li>
|
|
578
623
|
<li>Fixed a bug that latin1 normalization may access unexpected memory.</li>
|
579
624
|
</ul>
|
580
625
|
</div>
|
581
|
-
<div class="section" id="
|
582
|
-
<h3>Thanks<a class="headerlink" href="#
|
626
|
+
<div class="section" id="id31">
|
627
|
+
<h3>Thanks<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
|
583
628
|
<ul class="simple">
|
584
629
|
<li>Kazuhiko</li>
|
585
630
|
<li>Markus Elfring</li>
|
@@ -588,8 +633,8 @@ only used by mroonga. [#1303]</li>
|
|
588
633
|
</div>
|
589
634
|
<div class="section" id="release-2-0-0-2012-02-29">
|
590
635
|
<span id="release-2-0-0"></span><h2>Release 2.0.0 - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="Permalink to this headline">¶</a></h2>
|
591
|
-
<div class="section" id="
|
592
|
-
<h3>Improvements<a class="headerlink" href="#
|
636
|
+
<div class="section" id="id32">
|
637
|
+
<h3>Improvements<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
|
593
638
|
<ul class="simple">
|
594
639
|
<li>[dat] Added 0 length key check.</li>
|
595
640
|
<li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
|
@@ -613,8 +658,8 @@ only used by mroonga. [#1303]</li>
|
|
613
658
|
<li>[windows] Supported MessagePack.</li>
|
614
659
|
</ul>
|
615
660
|
</div>
|
616
|
-
<div class="section" id="
|
617
|
-
<h3>Fixes<a class="headerlink" href="#
|
661
|
+
<div class="section" id="id33">
|
662
|
+
<h3>Fixes<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
|
618
663
|
<ul class="simple">
|
619
664
|
<li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
|
620
665
|
<li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
|
@@ -624,8 +669,8 @@ only used by mroonga. [#1303]</li>
|
|
624
669
|
[Reported by @wareohji]</li>
|
625
670
|
</ul>
|
626
671
|
</div>
|
627
|
-
<div class="section" id="
|
628
|
-
<h3>Thanks<a class="headerlink" href="#
|
672
|
+
<div class="section" id="id34">
|
673
|
+
<h3>Thanks<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
|
629
674
|
<ul class="simple">
|
630
675
|
<li>Suzuki</li>
|
631
676
|
<li>Daiki Ueno</li>
|
@@ -638,8 +683,8 @@ only used by mroonga. [#1303]</li>
|
|
638
683
|
</div>
|
639
684
|
<div class="section" id="release-1-3-0-2012-01-29">
|
640
685
|
<span id="release-1-3-0"></span><h2>Release 1.3.0 - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="Permalink to this headline">¶</a></h2>
|
641
|
-
<div class="section" id="
|
642
|
-
<h3>Improvements<a class="headerlink" href="#
|
686
|
+
<div class="section" id="id35">
|
687
|
+
<h3>Improvements<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
|
643
688
|
<ul class="simple">
|
644
689
|
<li>Supported dynamic DB key table change by
|
645
690
|
GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
|
@@ -674,8 +719,8 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
674
719
|
<li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
|
675
720
|
</ul>
|
676
721
|
</div>
|
677
|
-
<div class="section" id="
|
678
|
-
<h3>Thanks<a class="headerlink" href="#
|
722
|
+
<div class="section" id="id36">
|
723
|
+
<h3>Thanks<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
|
679
724
|
<ul class="simple">
|
680
725
|
<li>montywi</li>
|
681
726
|
<li>Masaharu IWAI</li>
|
@@ -796,79 +841,85 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
796
841
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
797
842
|
<ul>
|
798
843
|
<li><a class="reference internal" href="#">News</a><ul>
|
799
|
-
<li><a class="reference internal" href="#release-2-1-
|
844
|
+
<li><a class="reference internal" href="#release-2-1-2-2013-01-29">Release 2.1.2 - 2013/01/29</a><ul>
|
845
|
+
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
800
846
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
847
|
+
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
801
848
|
</ul>
|
802
849
|
</li>
|
803
|
-
<li><a class="reference internal" href="#release-2-1-
|
804
|
-
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
850
|
+
<li><a class="reference internal" href="#release-2-1-1-2012-12-29">Release 2.1.1 - 2012/12/29</a><ul>
|
805
851
|
<li><a class="reference internal" href="#id1">Fixes</a></li>
|
806
|
-
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
807
852
|
</ul>
|
808
853
|
</li>
|
809
|
-
<li><a class="reference internal" href="#release-2-0-
|
854
|
+
<li><a class="reference internal" href="#release-2-1-0-2012-12-29">Release 2.1.0 - 2012/12/29</a><ul>
|
810
855
|
<li><a class="reference internal" href="#id2">Improvements</a></li>
|
811
856
|
<li><a class="reference internal" href="#id3">Fixes</a></li>
|
812
857
|
<li><a class="reference internal" href="#id4">Thanks</a></li>
|
813
858
|
</ul>
|
814
859
|
</li>
|
815
|
-
<li><a class="reference internal" href="#release-2-0-
|
860
|
+
<li><a class="reference internal" href="#release-2-0-9-2012-11-29">Release 2.0.9 - 2012/11/29</a><ul>
|
816
861
|
<li><a class="reference internal" href="#id5">Improvements</a></li>
|
817
862
|
<li><a class="reference internal" href="#id6">Fixes</a></li>
|
818
863
|
<li><a class="reference internal" href="#id7">Thanks</a></li>
|
819
864
|
</ul>
|
820
865
|
</li>
|
821
|
-
<li><a class="reference internal" href="#release-2-0-
|
866
|
+
<li><a class="reference internal" href="#release-2-0-8-2012-10-29">Release 2.0.8 - 2012/10/29</a><ul>
|
822
867
|
<li><a class="reference internal" href="#id8">Improvements</a></li>
|
823
868
|
<li><a class="reference internal" href="#id9">Fixes</a></li>
|
824
869
|
<li><a class="reference internal" href="#id10">Thanks</a></li>
|
825
870
|
</ul>
|
826
871
|
</li>
|
827
|
-
<li><a class="reference internal" href="#release-2-0-
|
872
|
+
<li><a class="reference internal" href="#release-2-0-7-2012-09-29">Release 2.0.7 - 2012/09/29</a><ul>
|
828
873
|
<li><a class="reference internal" href="#id11">Improvements</a></li>
|
829
874
|
<li><a class="reference internal" href="#id12">Fixes</a></li>
|
830
875
|
<li><a class="reference internal" href="#id13">Thanks</a></li>
|
831
876
|
</ul>
|
832
877
|
</li>
|
833
|
-
<li><a class="reference internal" href="#release-2-0-
|
878
|
+
<li><a class="reference internal" href="#release-2-0-6-2012-08-29">Release 2.0.6 - 2012/08/29</a><ul>
|
834
879
|
<li><a class="reference internal" href="#id14">Improvements</a></li>
|
835
880
|
<li><a class="reference internal" href="#id15">Fixes</a></li>
|
836
881
|
<li><a class="reference internal" href="#id16">Thanks</a></li>
|
837
882
|
</ul>
|
838
883
|
</li>
|
839
|
-
<li><a class="reference internal" href="#release-2-0-
|
884
|
+
<li><a class="reference internal" href="#release-2-0-5-2012-07-29">Release 2.0.5 - 2012/07/29</a><ul>
|
840
885
|
<li><a class="reference internal" href="#id17">Improvements</a></li>
|
841
886
|
<li><a class="reference internal" href="#id18">Fixes</a></li>
|
842
887
|
<li><a class="reference internal" href="#id19">Thanks</a></li>
|
843
888
|
</ul>
|
844
889
|
</li>
|
845
|
-
<li><a class="reference internal" href="#release-2-0-
|
890
|
+
<li><a class="reference internal" href="#release-2-0-4-2012-06-29">Release 2.0.4 - 2012/06/29</a><ul>
|
846
891
|
<li><a class="reference internal" href="#id20">Improvements</a></li>
|
847
892
|
<li><a class="reference internal" href="#id21">Fixes</a></li>
|
848
893
|
<li><a class="reference internal" href="#id22">Thanks</a></li>
|
849
894
|
</ul>
|
850
895
|
</li>
|
851
|
-
<li><a class="reference internal" href="#release-2-0-
|
896
|
+
<li><a class="reference internal" href="#release-2-0-3-2012-05-29">Release 2.0.3 - 2012/05/29</a><ul>
|
852
897
|
<li><a class="reference internal" href="#id23">Improvements</a></li>
|
853
898
|
<li><a class="reference internal" href="#id24">Fixes</a></li>
|
854
899
|
<li><a class="reference internal" href="#id25">Thanks</a></li>
|
855
900
|
</ul>
|
856
901
|
</li>
|
857
|
-
<li><a class="reference internal" href="#release-2-0-
|
902
|
+
<li><a class="reference internal" href="#release-2-0-2-2012-04-29">Release 2.0.2 - 2012/04/29</a><ul>
|
858
903
|
<li><a class="reference internal" href="#id26">Improvements</a></li>
|
859
904
|
<li><a class="reference internal" href="#id27">Fixes</a></li>
|
860
905
|
<li><a class="reference internal" href="#id28">Thanks</a></li>
|
861
906
|
</ul>
|
862
907
|
</li>
|
863
|
-
<li><a class="reference internal" href="#release-2-0-
|
908
|
+
<li><a class="reference internal" href="#release-2-0-1-2012-03-29">Release 2.0.1 - 2012/03/29</a><ul>
|
864
909
|
<li><a class="reference internal" href="#id29">Improvements</a></li>
|
865
910
|
<li><a class="reference internal" href="#id30">Fixes</a></li>
|
866
911
|
<li><a class="reference internal" href="#id31">Thanks</a></li>
|
867
912
|
</ul>
|
868
913
|
</li>
|
869
|
-
<li><a class="reference internal" href="#release-
|
914
|
+
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
|
870
915
|
<li><a class="reference internal" href="#id32">Improvements</a></li>
|
871
|
-
<li><a class="reference internal" href="#id33">
|
916
|
+
<li><a class="reference internal" href="#id33">Fixes</a></li>
|
917
|
+
<li><a class="reference internal" href="#id34">Thanks</a></li>
|
918
|
+
</ul>
|
919
|
+
</li>
|
920
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
|
921
|
+
<li><a class="reference internal" href="#id35">Improvements</a></li>
|
922
|
+
<li><a class="reference internal" href="#id36">Thanks</a></li>
|
872
923
|
</ul>
|
873
924
|
</li>
|
874
925
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a><ul>
|
@@ -906,11 +957,11 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
906
957
|
<li class="right" style="margin-right: 10px">
|
907
958
|
<a href="genindex.html" title="General Index"
|
908
959
|
>index</a></li>
|
909
|
-
<li><a href="index.html">groonga v2.1.
|
960
|
+
<li><a href="index.html">groonga v2.1.2 documentation</a> »</li>
|
910
961
|
</ul>
|
911
962
|
</div>
|
912
963
|
<div class="footer">
|
913
|
-
© Copyright 2009-
|
964
|
+
© Copyright 2009-2013, Brazil, Inc.
|
914
965
|
</div>
|
915
966
|
</body>
|
916
967
|
</html>
|
Binary file
|