rroonga 4.0.5-x64-mingw32 → 4.0.6-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/.yardopts +1 -1
- data/benchmark/common.rb +4 -4
- data/benchmark/create-wikipedia-database.rb +5 -5
- data/benchmark/read-write-many-small-items.rb +8 -8
- data/benchmark/repeat-load.rb +4 -4
- data/benchmark/select.rb +9 -9
- data/benchmark/write-many-small-items.rb +8 -8
- data/doc/images/sample-schema.png +0 -0
- data/doc/text/install.textile +2 -2
- data/doc/text/news.textile +41 -0
- data/doc/text/tutorial.textile +4 -4
- data/example/bookmark.rb +6 -7
- data/example/index-html.rb +6 -6
- data/ext/groonga/extconf.rb +23 -1
- data/ext/groonga/rb-grn-column.c +3 -2
- data/ext/groonga/rb-grn-context.c +20 -3
- data/ext/groonga/rb-grn-double-array-trie.c +11 -2
- data/ext/groonga/rb-grn-exception.c +28 -10
- data/ext/groonga/rb-grn-expression.c +78 -0
- data/ext/groonga/rb-grn-hash.c +10 -0
- data/ext/groonga/rb-grn-logger.c +7 -3
- data/ext/groonga/rb-grn-object.c +3 -2
- data/ext/groonga/rb-grn-patricia-trie.c +23 -20
- data/ext/groonga/rb-grn-table-key-support.c +92 -1
- data/ext/groonga/rb-grn-table.c +60 -17
- data/ext/groonga/rb-grn-utils.c +51 -2
- data/ext/groonga/rb-grn-variable-size-column.c +11 -7
- data/ext/groonga/rb-grn.h +11 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/groonga/dumper.rb +23 -1
- data/lib/groonga/patricia-trie.rb +1 -1
- data/lib/groonga/schema.rb +190 -205
- data/misc/grnop2ruby.rb +1 -1
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -0
- data/test/groonga-test-utils.rb +2 -2
- data/test/test-column.rb +19 -0
- data/test/test-context.rb +5 -1
- data/test/test-double-array-trie.rb +19 -0
- data/test/test-exception.rb +7 -2
- data/test/test-expression.rb +19 -0
- data/test/test-fix-size-column.rb +49 -36
- data/test/test-hash.rb +22 -0
- data/test/test-patricia-trie.rb +26 -7
- data/test/test-schema-dumper.rb +65 -1
- data/test/test-schema.rb +13 -2
- data/test/test-variable-size-column.rb +6 -5
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/mecab-config +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +0 -0
- data/vendor/local/include/groonga/groonga.h +21 -6
- data/vendor/local/include/groonga/groonga/token_filter.h +71 -0
- data/vendor/local/include/groonga/groonga/tokenizer.h +33 -1
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +1 -1
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +1 -1
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +41 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -2
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -1
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +1 -1
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +1 -1
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/client.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +1 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +68 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +23 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt +46 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +15 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +23 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +14 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{geolocation_search.txt → reference/operations/geolocation_search.txt} +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest.txt +0 -1
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/completion.txt +6 -6
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/correction.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/{suggest → reference/suggest}/introduction.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -2
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +1 -0
- data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/client.html +134 -0
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +86 -86
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +66 -66
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +105 -105
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/development.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/genindex.html +23 -7
- data/vendor/local/share/doc/groonga/en/html/index.html +215 -230
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/limitations.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/news.html +129 -59
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +154 -135
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -39
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +74 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +52 -51
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +98 -98
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +62 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +68 -68
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +39 -39
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +44 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +62 -62
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +140 -140
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/{suggest/tutorial.html → reference/operations.html} +31 -23
- data/vendor/local/share/doc/groonga/en/html/{geolocation_search.html → reference/operations/geolocation_search.html} +39 -34
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/{suggest.html → reference/suggest.html} +50 -48
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/completion.html +51 -49
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/correction.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/introduction.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/{suggest → reference/suggest}/suggestion.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/server/http.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +44 -44
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/server/package.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/spec.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/client.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +1 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +68 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +23 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt +46 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +15 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +23 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +14 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{geolocation_search.txt → reference/operations/geolocation_search.txt} +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest.txt +0 -1
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/completion.txt +6 -6
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/correction.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/{suggest → reference/suggest}/introduction.txt +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/client.html +132 -0
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +86 -86
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +66 -66
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +109 -109
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/development.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +27 -11
- data/vendor/local/share/doc/groonga/ja/html/index.html +215 -230
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/news.html +131 -63
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +154 -135
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +74 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +79 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +52 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +98 -98
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +62 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +54 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +68 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +39 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +50 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +54 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +64 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +143 -143
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/{suggest/tutorial.html → reference/operations.html} +31 -23
- data/vendor/local/share/doc/groonga/ja/html/{geolocation_search.html → reference/operations/geolocation_search.html} +40 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/{suggest.html → reference/suggest.html} +51 -49
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/completion.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/correction.html +48 -47
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/introduction.html +44 -42
- data/vendor/local/share/doc/groonga/ja/html/{suggest → reference/suggest}/suggestion.html +48 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +44 -44
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/spec.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
- data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
- data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +4911 -4427
- data/vendor/local/share/man/man1/groonga.1 +9023 -8517
- metadata +117 -109
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt +0 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt +0 -8
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>
|
10
|
+
<title>11. Development — Groonga v4.0.6-211-g8c0bb0b documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '4.0.
|
18
|
+
VERSION: '4.0.6-211-g8c0bb0b',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,9 +25,9 @@
|
|
25
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga v4.0.
|
29
|
-
<link rel="next" title="
|
30
|
-
<link rel="prev" title="
|
28
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0b documentation" href="index.html" />
|
29
|
+
<link rel="next" title="11.1. Travis CI" href="development/travis-ci.html" />
|
30
|
+
<link rel="prev" title="10.2. How to avoid mmap Cannot allocate memory error" href="troubleshooting/mmap_cannot_allocate_memory.html" />
|
31
31
|
</head>
|
32
32
|
<body>
|
33
33
|
<div class="header">
|
@@ -54,12 +54,12 @@
|
|
54
54
|
<a href="genindex.html" title="General Index"
|
55
55
|
accesskey="I">index</a></li>
|
56
56
|
<li class="right" >
|
57
|
-
<a href="development/travis-ci.html" title="
|
57
|
+
<a href="development/travis-ci.html" title="11.1. Travis CI"
|
58
58
|
accesskey="N">next</a> |</li>
|
59
59
|
<li class="right" >
|
60
|
-
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="
|
60
|
+
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="10.2. How to avoid mmap Cannot allocate memory error"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">Groonga v4.0.
|
62
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
@@ -69,15 +69,15 @@
|
|
69
69
|
<div class="body">
|
70
70
|
|
71
71
|
<div class="section" id="development">
|
72
|
-
<h1>
|
72
|
+
<h1>11. Development<a class="headerlink" href="#development" title="Permalink to this headline">¶</a></h1>
|
73
73
|
<p>This section describes about developing with Groonga. You may develop
|
74
74
|
an application that uses Groonga as its database, a library that uses
|
75
75
|
libgroonga, language bindings of libgroonga and so on.</p>
|
76
76
|
<div class="toctree-wrapper compound">
|
77
77
|
<ul>
|
78
|
-
<li class="toctree-l1"><a class="reference internal" href="development/travis-ci.html">
|
79
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#configuration">
|
80
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#examples">
|
78
|
+
<li class="toctree-l1"><a class="reference internal" href="development/travis-ci.html">11.1. Travis CI</a><ul>
|
79
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#configuration">11.1.1. Configuration</a></li>
|
80
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#examples">11.1.2. Examples</a></li>
|
81
81
|
</ul>
|
82
82
|
</li>
|
83
83
|
</ul>
|
@@ -92,10 +92,10 @@ libgroonga, language bindings of libgroonga and so on.</p>
|
|
92
92
|
<div class="sphinxsidebarwrapper">
|
93
93
|
<h4>Previous topic</h4>
|
94
94
|
<p class="topless"><a href="troubleshooting/mmap_cannot_allocate_memory.html"
|
95
|
-
title="previous chapter">
|
95
|
+
title="previous chapter">10.2. How to avoid mmap Cannot allocate memory error</a></p>
|
96
96
|
<h4>Next topic</h4>
|
97
97
|
<p class="topless"><a href="development/travis-ci.html"
|
98
|
-
title="next chapter">
|
98
|
+
title="next chapter">11.1. Travis CI</a></p>
|
99
99
|
<h3>This Page</h3>
|
100
100
|
<ul class="this-page-menu">
|
101
101
|
<li><a href="_sources/development.txt"
|
@@ -125,12 +125,12 @@ libgroonga, language bindings of libgroonga and so on.</p>
|
|
125
125
|
<a href="genindex.html" title="General Index"
|
126
126
|
>index</a></li>
|
127
127
|
<li class="right" >
|
128
|
-
<a href="development/travis-ci.html" title="
|
128
|
+
<a href="development/travis-ci.html" title="11.1. Travis CI"
|
129
129
|
>next</a> |</li>
|
130
130
|
<li class="right" >
|
131
|
-
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="
|
131
|
+
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="10.2. How to avoid mmap Cannot allocate memory error"
|
132
132
|
>previous</a> |</li>
|
133
|
-
<li><a href="index.html">Groonga v4.0.
|
133
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
134
134
|
</ul>
|
135
135
|
</div>
|
136
136
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>
|
10
|
+
<title>11.1. Travis CI — Groonga v4.0.6-211-g8c0bb0b documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../',
|
18
|
-
VERSION: '4.0.
|
18
|
+
VERSION: '4.0.6-211-g8c0bb0b',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,10 +25,10 @@
|
|
25
25
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga v4.0.
|
29
|
-
<link rel="up" title="
|
30
|
-
<link rel="next" title="
|
31
|
-
<link rel="prev" title="
|
28
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0b documentation" href="../index.html" />
|
29
|
+
<link rel="up" title="11. Development" href="../development.html" />
|
30
|
+
<link rel="next" title="12. How to contribute to groonga" href="../contribution.html" />
|
31
|
+
<link rel="prev" title="11. Development" href="../development.html" />
|
32
32
|
</head>
|
33
33
|
<body>
|
34
34
|
<div class="header">
|
@@ -55,13 +55,13 @@
|
|
55
55
|
<a href="../genindex.html" title="General Index"
|
56
56
|
accesskey="I">index</a></li>
|
57
57
|
<li class="right" >
|
58
|
-
<a href="../contribution.html" title="
|
58
|
+
<a href="../contribution.html" title="12. How to contribute to groonga"
|
59
59
|
accesskey="N">next</a> |</li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="../development.html" title="
|
61
|
+
<a href="../development.html" title="11. Development"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../index.html">Groonga v4.0.
|
64
|
-
<li><a href="../development.html" accesskey="U">
|
63
|
+
<li><a href="../index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
64
|
+
<li><a href="../development.html" accesskey="U">11. Development</a> »</li>
|
65
65
|
</ul>
|
66
66
|
</div>
|
67
67
|
|
@@ -71,7 +71,7 @@
|
|
71
71
|
<div class="body">
|
72
72
|
|
73
73
|
<div class="section" id="travis-ci">
|
74
|
-
<h1>
|
74
|
+
<h1>11.1. Travis CI<a class="headerlink" href="#travis-ci" title="Permalink to this headline">¶</a></h1>
|
75
75
|
<p>This section describes about using Groonga on <a class="reference external" href="http://travis-ci.org/">Travis CI</a>. Travis CI is a hosted continuous
|
76
76
|
integration service for the open source community.</p>
|
77
77
|
<p>You can use Travis CI for your open source software. This section only
|
@@ -79,7 +79,7 @@ describes about Groonga related configuration. See <a class="reference external"
|
|
79
79
|
Documentation</a> about general
|
80
80
|
Travis CI.</p>
|
81
81
|
<div class="section" id="configuration">
|
82
|
-
<h2>
|
82
|
+
<h2>11.1.1. Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline">¶</a></h2>
|
83
83
|
<p>Travis CI is running on 64-bit Ubuntu 12.04 LTS Server Edition. (See <a class="reference external" href="http://about.travis-ci.org/docs/user/ci-environment/">Travis CI: About
|
84
84
|
Travis CI Environment</a>.) You can
|
85
85
|
use apt-line for Ubuntu 12.04 LTS provided by Groonga project to install
|
@@ -99,11 +99,11 @@ just substitute <tt class="docutils literal"><span class="pre">before_install:</
|
|
99
99
|
<p>With the above configuration, you can use Groonga for your build.</p>
|
100
100
|
</div>
|
101
101
|
<div class="section" id="examples">
|
102
|
-
<h2>
|
102
|
+
<h2>11.1.2. Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h2>
|
103
103
|
<p>Here are open source softwares that use Groonga on Travis CI:</p>
|
104
104
|
<blockquote>
|
105
105
|
<div><ul class="simple">
|
106
|
-
<li><a class="reference external" href="http://
|
106
|
+
<li><a class="reference external" href="http://ranguba.org/#about-rroonga">rroonga</a> (Ruby bindings)<ul>
|
107
107
|
<li><a class="reference external" href="http://travis-ci.org/#!/ranguba/rroonga">rroonga on Travis CI</a></li>
|
108
108
|
<li><a class="reference external" href="https://github.com/ranguba/rroonga/blob/master/.travis.yml">.travis.yml for rroonga</a></li>
|
109
109
|
</ul>
|
@@ -131,19 +131,19 @@ just substitute <tt class="docutils literal"><span class="pre">before_install:</
|
|
131
131
|
<div class="sphinxsidebarwrapper">
|
132
132
|
<h3><a href="../index.html">Table Of Contents</a></h3>
|
133
133
|
<ul>
|
134
|
-
<li><a class="reference internal" href="#">
|
135
|
-
<li><a class="reference internal" href="#configuration">
|
136
|
-
<li><a class="reference internal" href="#examples">
|
134
|
+
<li><a class="reference internal" href="#">11.1. Travis CI</a><ul>
|
135
|
+
<li><a class="reference internal" href="#configuration">11.1.1. Configuration</a></li>
|
136
|
+
<li><a class="reference internal" href="#examples">11.1.2. Examples</a></li>
|
137
137
|
</ul>
|
138
138
|
</li>
|
139
139
|
</ul>
|
140
140
|
|
141
141
|
<h4>Previous topic</h4>
|
142
142
|
<p class="topless"><a href="../development.html"
|
143
|
-
title="previous chapter">
|
143
|
+
title="previous chapter">11. Development</a></p>
|
144
144
|
<h4>Next topic</h4>
|
145
145
|
<p class="topless"><a href="../contribution.html"
|
146
|
-
title="next chapter">
|
146
|
+
title="next chapter">12. How to contribute to groonga</a></p>
|
147
147
|
<h3>This Page</h3>
|
148
148
|
<ul class="this-page-menu">
|
149
149
|
<li><a href="../_sources/development/travis-ci.txt"
|
@@ -173,13 +173,13 @@ just substitute <tt class="docutils literal"><span class="pre">before_install:</
|
|
173
173
|
<a href="../genindex.html" title="General Index"
|
174
174
|
>index</a></li>
|
175
175
|
<li class="right" >
|
176
|
-
<a href="../contribution.html" title="
|
176
|
+
<a href="../contribution.html" title="12. How to contribute to groonga"
|
177
177
|
>next</a> |</li>
|
178
178
|
<li class="right" >
|
179
|
-
<a href="../development.html" title="
|
179
|
+
<a href="../development.html" title="11. Development"
|
180
180
|
>previous</a> |</li>
|
181
|
-
<li><a href="../index.html">Groonga v4.0.
|
182
|
-
<li><a href="../development.html" >
|
181
|
+
<li><a href="../index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
182
|
+
<li><a href="../development.html" >11. Development</a> »</li>
|
183
183
|
</ul>
|
184
184
|
</div>
|
185
185
|
<div class="footer">
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<head>
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
10
10
|
|
11
|
-
<title>Index — Groonga v4.0.
|
11
|
+
<title>Index — Groonga v4.0.6-211-g8c0bb0b documentation</title>
|
12
12
|
|
13
13
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
14
14
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<script type="text/javascript">
|
17
17
|
var DOCUMENTATION_OPTIONS = {
|
18
18
|
URL_ROOT: './',
|
19
|
-
VERSION: '4.0.
|
19
|
+
VERSION: '4.0.6-211-g8c0bb0b',
|
20
20
|
COLLAPSE_INDEX: false,
|
21
21
|
FILE_SUFFIX: '.html',
|
22
22
|
HAS_SOURCE: true
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v4.0.
|
29
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0b documentation" href="index.html" />
|
30
30
|
</head>
|
31
31
|
<body>
|
32
32
|
<div class="header">
|
@@ -52,7 +52,7 @@
|
|
52
52
|
<li class="right" style="margin-right: 10px">
|
53
53
|
<a href="#" title="General Index"
|
54
54
|
accesskey="I">index</a></li>
|
55
|
-
<li><a href="index.html">Groonga v4.0.
|
55
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
56
56
|
</ul>
|
57
57
|
</div>
|
58
58
|
|
@@ -868,6 +868,10 @@
|
|
868
868
|
</dt>
|
869
869
|
|
870
870
|
|
871
|
+
<dt><a href="reference/api/grn_content_type.html#c.grn_content_type">grn_content_type (C type)</a>
|
872
|
+
</dt>
|
873
|
+
|
874
|
+
|
871
875
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx">grn_ctx (C type)</a>
|
872
876
|
</dt>
|
873
877
|
|
@@ -900,6 +904,10 @@
|
|
900
904
|
</dt>
|
901
905
|
|
902
906
|
|
907
|
+
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_get_output_type">grn_ctx_get_output_type (C function)</a>
|
908
|
+
</dt>
|
909
|
+
|
910
|
+
|
903
911
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_init">grn_ctx_init (C function)</a>
|
904
912
|
</dt>
|
905
913
|
|
@@ -920,6 +928,10 @@
|
|
920
928
|
</dt>
|
921
929
|
|
922
930
|
|
931
|
+
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_set_output_type">grn_ctx_set_output_type (C function)</a>
|
932
|
+
</dt>
|
933
|
+
|
934
|
+
|
923
935
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_use">grn_ctx_use (C function)</a>
|
924
936
|
</dt>
|
925
937
|
|
@@ -1004,6 +1016,10 @@
|
|
1004
1016
|
</dt>
|
1005
1017
|
|
1006
1018
|
|
1019
|
+
<dt><a href="reference/api/grn_expr.html#c.grn_expr_get_keywords">grn_expr_get_keywords (C function)</a>
|
1020
|
+
</dt>
|
1021
|
+
|
1022
|
+
|
1007
1023
|
<dt><a href="reference/api/grn_expr.html#c.grn_expr_get_var_by_offset">grn_expr_get_var_by_offset (C function)</a>
|
1008
1024
|
</dt>
|
1009
1025
|
|
@@ -1135,6 +1151,8 @@
|
|
1135
1151
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_defrag">grn_obj_defrag (C function)</a>
|
1136
1152
|
</dt>
|
1137
1153
|
|
1154
|
+
</dl></td>
|
1155
|
+
<td style="width: 33%" valign="top"><dl>
|
1138
1156
|
|
1139
1157
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_delete_by_id">grn_obj_delete_by_id (C function)</a>
|
1140
1158
|
</dt>
|
@@ -1143,8 +1161,6 @@
|
|
1143
1161
|
<dt><a href="reference/api/grn_hook.html#c.grn_obj_delete_hook">grn_obj_delete_hook (C function)</a>
|
1144
1162
|
</dt>
|
1145
1163
|
|
1146
|
-
</dl></td>
|
1147
|
-
<td style="width: 33%" valign="top"><dl>
|
1148
1164
|
|
1149
1165
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_expire">grn_obj_expire (C function)</a>
|
1150
1166
|
</dt>
|
@@ -1582,7 +1598,7 @@
|
|
1582
1598
|
<li class="right" style="margin-right: 10px">
|
1583
1599
|
<a href="#" title="General Index"
|
1584
1600
|
>index</a></li>
|
1585
|
-
<li><a href="index.html">Groonga v4.0.
|
1601
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
1586
1602
|
</ul>
|
1587
1603
|
</div>
|
1588
1604
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>Groonga documentation — Groonga v4.0.
|
10
|
+
<title>Groonga documentation — Groonga v4.0.6-211-g8c0bb0b documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '4.0.
|
18
|
+
VERSION: '4.0.6-211-g8c0bb0b',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga v4.0.
|
28
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0b documentation" href="#" />
|
29
29
|
<link rel="next" title="1. Characteristics of Groonga" href="characteristic.html" />
|
30
30
|
</head>
|
31
31
|
<body>
|
@@ -55,7 +55,7 @@
|
|
55
55
|
<li class="right" >
|
56
56
|
<a href="characteristic.html" title="1. Characteristics of Groonga"
|
57
57
|
accesskey="N">next</a> |</li>
|
58
|
-
<li><a href="#">Groonga v4.0.
|
58
|
+
<li><a href="#">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
59
59
|
</ul>
|
60
60
|
</div>
|
61
61
|
|
@@ -217,269 +217,254 @@
|
|
217
217
|
</li>
|
218
218
|
</ul>
|
219
219
|
</li>
|
220
|
-
<li class="toctree-l1"><a class="reference internal" href="
|
221
|
-
<li class="toctree-l2"><a class="reference internal" href="
|
222
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
223
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
224
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
225
|
-
|
220
|
+
<li class="toctree-l1"><a class="reference internal" href="server.html">5. Server</a><ul>
|
221
|
+
<li class="toctree-l2"><a class="reference internal" href="server/package.html">5.1. Server packages</a><ul>
|
222
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-httpd">5.1.1. groonga-httpd</a></li>
|
223
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-server-http">5.1.2. groonga-server-http</a></li>
|
224
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-server-gqtp">5.1.3. groonga-server-gqtp</a></li>
|
225
|
+
</ul>
|
226
|
+
</li>
|
227
|
+
<li class="toctree-l2"><a class="reference internal" href="server/gqtp.html">5.2. GQTP</a></li>
|
228
|
+
<li class="toctree-l2"><a class="reference internal" href="server/http.html">5.3. HTTP</a><ul>
|
229
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/comparison.html">5.3.1. Comparison</a></li>
|
230
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga.html">5.3.2. groonga</a></li>
|
231
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
|
232
|
+
</ul>
|
233
|
+
</li>
|
234
|
+
</ul>
|
235
|
+
</li>
|
236
|
+
<li class="toctree-l1"><a class="reference internal" href="client.html">6. Client</a></li>
|
237
|
+
<li class="toctree-l1"><a class="reference internal" href="reference.html">7. Reference manual</a><ul>
|
238
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/executables.html">7.1. Executables</a><ul>
|
239
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/grnslap.html">7.1.1. grnslap</a></li>
|
240
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga.html">7.1.2. groonga command</a></li>
|
241
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-benchmark.html">7.1.3. groonga-benchmark</a></li>
|
242
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-httpd.html">7.1.4. groonga-httpd</a></li>
|
243
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-server-http.html">7.1.5. groonga HTTPサーバー</a></li>
|
244
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html">7.1.6. groonga-suggest-create-dataset</a></li>
|
245
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-httpd.html">7.1.7. groonga-suggest-httpd</a></li>
|
246
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-learner.html">7.1.8. groonga-suggest-learner</a></li>
|
247
|
+
</ul>
|
248
|
+
</li>
|
249
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/output.html">7.2. Output</a><ul>
|
250
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/output.html#usage">7.2.1. Usage</a></li>
|
251
|
+
</ul>
|
252
|
+
</li>
|
253
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/command.html">7.3. Command</a><ul>
|
254
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/command_version.html">7.3.1. コマンドバージョン</a></li>
|
255
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/output_format.html">7.3.2. Output format</a></li>
|
256
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/return_code.html">7.3.3. Return code</a></li>
|
257
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/cache_limit.html">7.3.4. <tt class="docutils literal"><span class="pre">cache_limit</span></tt></a></li>
|
258
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/check.html">7.3.5. <tt class="docutils literal"><span class="pre">check</span></tt></a></li>
|
259
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/clearlock.html">7.3.6. <tt class="docutils literal"><span class="pre">clearlock</span></tt></a></li>
|
260
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_create.html">7.3.7. <tt class="docutils literal"><span class="pre">column_create</span></tt></a></li>
|
261
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_list.html">7.3.8. <tt class="docutils literal"><span class="pre">column_list</span></tt></a></li>
|
262
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_remove.html">7.3.9. <tt class="docutils literal"><span class="pre">column_remove</span></tt></a></li>
|
263
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_rename.html">7.3.10. <tt class="docutils literal"><span class="pre">column_rename</span></tt></a></li>
|
264
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/define_selector.html">7.3.11. <tt class="docutils literal"><span class="pre">define_selector</span></tt></a></li>
|
265
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/defrag.html">7.3.12. <tt class="docutils literal"><span class="pre">defrag</span></tt></a></li>
|
266
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/delete.html">7.3.13. <tt class="docutils literal"><span class="pre">delete</span></tt></a></li>
|
267
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/dump.html">7.3.14. <tt class="docutils literal"><span class="pre">dump</span></tt></a></li>
|
268
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/load.html">7.3.15. <tt class="docutils literal"><span class="pre">load</span></tt></a></li>
|
269
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_level.html">7.3.16. <tt class="docutils literal"><span class="pre">log_level</span></tt></a></li>
|
270
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_put.html">7.3.17. <tt class="docutils literal"><span class="pre">log_put</span></tt></a></li>
|
271
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_reopen.html">7.3.18. <tt class="docutils literal"><span class="pre">log_reopen</span></tt></a></li>
|
272
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/normalize.html">7.3.19. <tt class="docutils literal"><span class="pre">normalize</span></tt></a></li>
|
273
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/normalizer_list.html">7.3.20. <tt class="docutils literal"><span class="pre">normalizer_list</span></tt></a></li>
|
274
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/quit.html">7.3.21. <tt class="docutils literal"><span class="pre">quit</span></tt></a></li>
|
275
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/register.html">7.3.22. <tt class="docutils literal"><span class="pre">register</span></tt></a></li>
|
276
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/ruby_eval.html">7.3.23. <tt class="docutils literal"><span class="pre">ruby_eval</span></tt></a></li>
|
277
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/ruby_load.html">7.3.24. <tt class="docutils literal"><span class="pre">ruby_load</span></tt></a></li>
|
278
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/select.html">7.3.25. <tt class="docutils literal"><span class="pre">select</span></tt></a></li>
|
279
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/shutdown.html">7.3.26. <tt class="docutils literal"><span class="pre">shutdown</span></tt></a></li>
|
280
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/status.html">7.3.27. <tt class="docutils literal"><span class="pre">status</span></tt></a></li>
|
281
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/suggest.html">7.3.28. <tt class="docutils literal"><span class="pre">suggest</span></tt></a></li>
|
282
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_create.html">7.3.29. <tt class="docutils literal"><span class="pre">table_create</span></tt></a></li>
|
283
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_list.html">7.3.30. <tt class="docutils literal"><span class="pre">table_list</span></tt></a></li>
|
284
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_remove.html">7.3.31. <tt class="docutils literal"><span class="pre">table_remove</span></tt></a></li>
|
285
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_tokenize.html">7.3.32. <tt class="docutils literal"><span class="pre">table_tokenize</span></tt></a></li>
|
286
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/tokenize.html">7.3.33. <tt class="docutils literal"><span class="pre">tokenize</span></tt></a></li>
|
287
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/tokenizer_list.html">7.3.34. <tt class="docutils literal"><span class="pre">tokenizer_list</span></tt></a></li>
|
288
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/commands/truncate.html">7.3.35. <tt class="docutils literal"><span class="pre">truncate</span></tt></a></li>
|
289
|
+
</ul>
|
290
|
+
</li>
|
291
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/types.html">7.4. データ型</a><ul>
|
292
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id2">7.4.1. 名前</a></li>
|
293
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id3">7.4.2. 説明</a></li>
|
294
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id4">7.4.3. 組込型</a></li>
|
295
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id6">7.4.4. 型に関する制限事項</a></li>
|
296
|
+
</ul>
|
297
|
+
</li>
|
298
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tables.html">7.5. Tables</a><ul>
|
299
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#summary">7.5.1. Summary</a></li>
|
300
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#characteristics">7.5.2. Characteristics</a></li>
|
301
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#record-id">7.5.3. Record ID</a></li>
|
302
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#persistent-table-and-temporary-table">7.5.4. Persistent table and temporary table</a></li>
|
303
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#limitations">7.5.5. Limitations</a></li>
|
304
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#see-also">7.5.6. See also</a></li>
|
305
|
+
</ul>
|
306
|
+
</li>
|
307
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/column.html">7.6. Column</a></li>
|
308
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/normalizers.html">7.7. Normalizers</a><ul>
|
309
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#summary">7.7.1. Summary</a></li>
|
310
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#built-in-normalizers">7.7.2. Built-in normalizers</a></li>
|
311
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#additional-normalizers">7.7.3. Additional normalizers</a></li>
|
312
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#see-also">7.7.4. See also</a></li>
|
313
|
+
</ul>
|
314
|
+
</li>
|
315
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tokenizers.html">7.8. Tokenizers</a></li>
|
316
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/token_filters.html">7.9. Token filters</a><ul>
|
317
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#summary">7.9.1. Summary</a></li>
|
318
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#available-token-filters">7.9.2. Available token filters</a></li>
|
319
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#see-also">7.9.3. See also</a></li>
|
320
|
+
</ul>
|
321
|
+
</li>
|
322
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/query_expanders.html">7.10. Query expanders</a><ul>
|
323
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/query_expanders/tsv.html">7.10.1. QueryExpanderTSV</a></li>
|
324
|
+
</ul>
|
325
|
+
</li>
|
326
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/grn_expr.html">7.11. grn_expr</a><ul>
|
327
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/query_syntax.html">7.11.1. Query syntax</a></li>
|
328
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/script_syntax.html">7.11.2. Script syntax</a></li>
|
329
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr.html#see-also">7.11.3. See also</a></li>
|
330
|
+
</ul>
|
331
|
+
</li>
|
332
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/function.html">7.12. Function</a><ul>
|
333
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/between.html">7.12.1. between</a></li>
|
334
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/edit_distance.html">7.12.2. edit_distance</a></li>
|
335
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_distance.html">7.12.3. geo_distance</a></li>
|
336
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_circle.html">7.12.4. geo_in_circle</a></li>
|
337
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_rectangle.html">7.12.5. geo_in_rectangle</a></li>
|
338
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_full.html">7.12.6. highlight_full</a></li>
|
339
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_html.html">7.12.7. highlight_html</a></li>
|
340
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/html_untag.html">7.12.8. html_untag</a></li>
|
341
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/now.html">7.12.9. now</a></li>
|
342
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/query.html">7.12.10. query</a></li>
|
343
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/rand.html">7.12.11. rand</a></li>
|
344
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/snippet_html.html">7.12.12. snippet_html</a></li>
|
345
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/sub_filter.html">7.12.13. sub_filter</a></li>
|
226
346
|
</ul>
|
227
347
|
</li>
|
228
|
-
<li class="toctree-l2"><a class="reference internal" href="
|
229
|
-
<li class="toctree-
|
230
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-it-works">5.3.1. How it works</a></li>
|
231
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-to-use">5.3.2. How to use</a></li>
|
232
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-it-learns">5.3.3. How it learns</a></li>
|
233
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-to-update-rk-reading-data">5.3.4. How to update RK reading data</a></li>
|
348
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/operations.html">7.13. Operations</a><ul>
|
349
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/operations/geolocation_search.html">7.13.1. Geolocation Search</a></li>
|
234
350
|
</ul>
|
235
351
|
</li>
|
236
|
-
<li class="toctree-l2"><a class="reference internal" href="suggest
|
237
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/
|
238
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/
|
239
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/correction.html
|
352
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/suggest.html">7.14. Suggest</a><ul>
|
353
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/introduction.html">7.14.1. Introduction</a></li>
|
354
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/completion.html">7.14.2. Completion</a></li>
|
355
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/correction.html">7.14.3. Correction</a></li>
|
356
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/suggestion.html">7.14.4. Suggestion</a></li>
|
240
357
|
</ul>
|
241
358
|
</li>
|
242
|
-
<li class="toctree-l2"><a class="reference internal" href="
|
243
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
244
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
245
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
246
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/suggestion.html#how-to-extract-learning-data">5.5.4. How to extract learning data</a></li>
|
359
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/indexing.html">7.15. Indexing</a><ul>
|
360
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#online-index-construction">7.15.1. Online index construction</a></li>
|
361
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#offline-index-construction">7.15.2. Offline index construction</a></li>
|
362
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#how-to-use">7.15.3. How to use</a></li>
|
247
363
|
</ul>
|
248
364
|
</li>
|
365
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/log.html">7.16. Log</a><ul>
|
366
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#process-log">7.16.1. Process log</a></li>
|
367
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#query-log">7.16.2. Query log</a></li>
|
249
368
|
</ul>
|
250
369
|
</li>
|
251
|
-
<li class="toctree-
|
252
|
-
<li class="toctree-
|
370
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tuning.html">7.17. Tuning</a><ul>
|
371
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#summary">7.17.1. Summary</a></li>
|
372
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#parameters">7.17.2. Parameters</a></li>
|
373
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#linux">7.17.3. Linux</a></li>
|
374
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#freebsd">7.17.4. FreeBSD</a></li>
|
253
375
|
</ul>
|
254
376
|
</li>
|
255
|
-
<li class="toctree-
|
256
|
-
<li class="toctree-
|
257
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
258
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
259
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
377
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/api.html">7.18. API</a><ul>
|
378
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/global_configurations.html">7.18.1. Global configurations</a></li>
|
379
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_cache.html">7.18.2. <tt class="docutils literal"><span class="pre">grn_cache</span></tt></a></li>
|
380
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_column.html">7.18.3. <tt class="docutils literal"><span class="pre">grn_column</span></tt></a></li>
|
381
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_command_version.html">7.18.4. <tt class="docutils literal"><span class="pre">grn_command_version</span></tt></a></li>
|
382
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_content_type.html">7.18.5. <tt class="docutils literal"><span class="pre">grn_content_type</span></tt></a></li>
|
383
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_ctx.html">7.18.6. <tt class="docutils literal"><span class="pre">grn_ctx</span></tt></a></li>
|
384
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_db.html">7.18.7. <tt class="docutils literal"><span class="pre">grn_db</span></tt></a></li>
|
385
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_encoding.html">7.18.8. <tt class="docutils literal"><span class="pre">grn_encoding</span></tt></a></li>
|
386
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_expr.html">7.18.9. grn_expr</a></li>
|
387
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_geo.html">7.18.10. <tt class="docutils literal"><span class="pre">grn_geo</span></tt></a></li>
|
388
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_hook.html">7.18.11. <tt class="docutils literal"><span class="pre">grn_hook</span></tt></a></li>
|
389
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_ii.html">7.18.12. <tt class="docutils literal"><span class="pre">grn_ii</span></tt></a></li>
|
390
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_index_cursor.html">7.18.13. <tt class="docutils literal"><span class="pre">grn_index_cursor</span></tt></a></li>
|
391
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_info.html">7.18.14. <tt class="docutils literal"><span class="pre">grn_info</span></tt></a></li>
|
392
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_match_escalation.html">7.18.15. <tt class="docutils literal"><span class="pre">grn_match_escalation</span></tt></a></li>
|
393
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_obj.html">7.18.16. <tt class="docutils literal"><span class="pre">grn_obj</span></tt></a></li>
|
394
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_proc.html">7.18.17. <tt class="docutils literal"><span class="pre">grn_proc</span></tt></a></li>
|
395
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_search.html">7.18.18. <tt class="docutils literal"><span class="pre">grn_search</span></tt></a></li>
|
396
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_table.html">7.18.19. <tt class="docutils literal"><span class="pre">grn_table</span></tt></a></li>
|
397
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_table_cursor.html">7.18.20. <tt class="docutils literal"><span class="pre">grn_table_cursor</span></tt></a></li>
|
398
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_type.html">7.18.21. <tt class="docutils literal"><span class="pre">grn_type</span></tt></a></li>
|
399
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_user_data.html">7.18.22. <tt class="docutils literal"><span class="pre">grn_user_data</span></tt></a></li>
|
400
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/plugin.html">7.18.23. Plugin</a></li>
|
260
401
|
</ul>
|
261
402
|
</li>
|
262
|
-
<li class="toctree-l2"><a class="reference internal" href="server/gqtp.html">7.2. GQTP</a></li>
|
263
|
-
<li class="toctree-l2"><a class="reference internal" href="server/http.html">7.3. HTTP</a><ul>
|
264
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/comparison.html">7.3.1. Comparison</a></li>
|
265
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga.html">7.3.2. groonga</a></li>
|
266
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga-httpd.html">7.3.3. groonga-httpd</a></li>
|
267
403
|
</ul>
|
268
404
|
</li>
|
405
|
+
<li class="toctree-l1"><a class="reference internal" href="spec.html">8. Specification</a><ul>
|
406
|
+
<li class="toctree-l2"><a class="reference internal" href="spec/gqtp.html">8.1. GQTP</a><ul>
|
407
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#protocol">8.1.1. Protocol</a></li>
|
408
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#example">8.1.2. Example</a></li>
|
409
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#see-also">8.1.3. See also</a></li>
|
269
410
|
</ul>
|
270
411
|
</li>
|
271
|
-
<li class="toctree-
|
272
|
-
<li class="toctree-
|
273
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
274
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga.html">8.1.2. groonga command</a></li>
|
275
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-benchmark.html">8.1.3. groonga-benchmark</a></li>
|
276
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-httpd.html">8.1.4. groonga-httpd</a></li>
|
277
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-server-http.html">8.1.5. groonga HTTPサーバー</a></li>
|
278
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html">8.1.6. groonga-suggest-create-dataset</a></li>
|
279
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-httpd.html">8.1.7. groonga-suggest-httpd</a></li>
|
280
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-learner.html">8.1.8. groonga-suggest-learner</a></li>
|
412
|
+
<li class="toctree-l2"><a class="reference internal" href="spec/search.html">8.2. 検索</a><ul>
|
413
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id2">8.2.1. 検索の挙動</a></li>
|
414
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id6">8.2.2. 検索の使い分け</a></li>
|
281
415
|
</ul>
|
282
416
|
</li>
|
283
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/output.html">8.2. Output</a><ul>
|
284
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/output.html#usage">8.2.1. Usage</a></li>
|
285
417
|
</ul>
|
286
418
|
</li>
|
287
|
-
<li class="toctree-
|
288
|
-
<li class="toctree-
|
289
|
-
<li class="toctree-
|
290
|
-
<li class="toctree-
|
291
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/cache_limit.html">8.3.4. <tt class="docutils literal"><span class="pre">cache_limit</span></tt></a></li>
|
292
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/check.html">8.3.5. <tt class="docutils literal"><span class="pre">check</span></tt></a></li>
|
293
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/clearlock.html">8.3.6. <tt class="docutils literal"><span class="pre">clearlock</span></tt></a></li>
|
294
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_create.html">8.3.7. <tt class="docutils literal"><span class="pre">column_create</span></tt></a></li>
|
295
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_list.html">8.3.8. <tt class="docutils literal"><span class="pre">column_list</span></tt></a></li>
|
296
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_remove.html">8.3.9. <tt class="docutils literal"><span class="pre">column_remove</span></tt></a></li>
|
297
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/column_rename.html">8.3.10. <tt class="docutils literal"><span class="pre">column_rename</span></tt></a></li>
|
298
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/define_selector.html">8.3.11. <tt class="docutils literal"><span class="pre">define_selector</span></tt></a></li>
|
299
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/defrag.html">8.3.12. <tt class="docutils literal"><span class="pre">defrag</span></tt></a></li>
|
300
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/delete.html">8.3.13. <tt class="docutils literal"><span class="pre">delete</span></tt></a></li>
|
301
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/dump.html">8.3.14. <tt class="docutils literal"><span class="pre">dump</span></tt></a></li>
|
302
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/load.html">8.3.15. <tt class="docutils literal"><span class="pre">load</span></tt></a></li>
|
303
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_level.html">8.3.16. <tt class="docutils literal"><span class="pre">log_level</span></tt></a></li>
|
304
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_put.html">8.3.17. <tt class="docutils literal"><span class="pre">log_put</span></tt></a></li>
|
305
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/log_reopen.html">8.3.18. <tt class="docutils literal"><span class="pre">log_reopen</span></tt></a></li>
|
306
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/normalize.html">8.3.19. <tt class="docutils literal"><span class="pre">normalize</span></tt></a></li>
|
307
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/normalizer_list.html">8.3.20. <tt class="docutils literal"><span class="pre">normalizer_list</span></tt></a></li>
|
308
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/quit.html">8.3.21. <tt class="docutils literal"><span class="pre">quit</span></tt></a></li>
|
309
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/register.html">8.3.22. <tt class="docutils literal"><span class="pre">register</span></tt></a></li>
|
310
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/ruby_eval.html">8.3.23. <tt class="docutils literal"><span class="pre">ruby_eval</span></tt></a></li>
|
311
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/ruby_load.html">8.3.24. <tt class="docutils literal"><span class="pre">ruby_load</span></tt></a></li>
|
312
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/select.html">8.3.25. <tt class="docutils literal"><span class="pre">select</span></tt></a></li>
|
313
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/shutdown.html">8.3.26. <tt class="docutils literal"><span class="pre">shutdown</span></tt></a></li>
|
314
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/status.html">8.3.27. <tt class="docutils literal"><span class="pre">status</span></tt></a></li>
|
315
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/suggest.html">8.3.28. <tt class="docutils literal"><span class="pre">suggest</span></tt></a></li>
|
316
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_create.html">8.3.29. <tt class="docutils literal"><span class="pre">table_create</span></tt></a></li>
|
317
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_list.html">8.3.30. <tt class="docutils literal"><span class="pre">table_list</span></tt></a></li>
|
318
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/table_remove.html">8.3.31. <tt class="docutils literal"><span class="pre">table_remove</span></tt></a></li>
|
319
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/tokenize.html">8.3.32. <tt class="docutils literal"><span class="pre">tokenize</span></tt></a></li>
|
320
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/tokenizer_list.html">8.3.33. <tt class="docutils literal"><span class="pre">tokenizer_list</span></tt></a></li>
|
321
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/commands/truncate.html">8.3.34. <tt class="docutils literal"><span class="pre">truncate</span></tt></a></li>
|
322
|
-
</ul>
|
323
|
-
</li>
|
324
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/types.html">8.4. データ型</a><ul>
|
325
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id2">8.4.1. 名前</a></li>
|
326
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id3">8.4.2. 説明</a></li>
|
327
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id4">8.4.3. 組込型</a></li>
|
328
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id6">8.4.4. 型に関する制限事項</a></li>
|
329
|
-
</ul>
|
330
|
-
</li>
|
331
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tables.html">8.5. Tables</a><ul>
|
332
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#summary">8.5.1. Summary</a></li>
|
333
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#characteristics">8.5.2. Characteristics</a></li>
|
334
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#record-id">8.5.3. Record ID</a></li>
|
335
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#persistent-table-and-temporary-table">8.5.4. Persistent table and temporary table</a></li>
|
336
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#limitations">8.5.5. Limitations</a></li>
|
337
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#see-also">8.5.6. See also</a></li>
|
338
|
-
</ul>
|
339
|
-
</li>
|
340
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/column.html">8.6. Column</a></li>
|
341
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/normalizers.html">8.7. Normalizers</a><ul>
|
342
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#summary">8.7.1. Summary</a></li>
|
343
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#built-in-normalizers">8.7.2. Built-in normalizers</a></li>
|
344
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#additional-normalizers">8.7.3. Additional normalizers</a></li>
|
345
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#see-also">8.7.4. See also</a></li>
|
346
|
-
</ul>
|
347
|
-
</li>
|
348
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tokenizers.html">8.8. Tokenizers</a></li>
|
349
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/query_expanders.html">8.9. Query expanders</a><ul>
|
350
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/query_expanders/tsv.html">8.9.1. QueryExpanderTSV</a></li>
|
351
|
-
</ul>
|
352
|
-
</li>
|
353
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/grn_expr.html">8.10. grn_expr</a><ul>
|
354
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/query_syntax.html">8.10.1. Query syntax</a></li>
|
355
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/script_syntax.html">8.10.2. Script syntax</a></li>
|
356
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr.html#see-also">8.10.3. See also</a></li>
|
357
|
-
</ul>
|
358
|
-
</li>
|
359
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/function.html">8.11. Function</a><ul>
|
360
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/between.html">8.11.1. between</a></li>
|
361
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/edit_distance.html">8.11.2. edit_distance</a></li>
|
362
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_distance.html">8.11.3. geo_distance</a></li>
|
363
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_circle.html">8.11.4. geo_in_circle</a></li>
|
364
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_rectangle.html">8.11.5. geo_in_rectangle</a></li>
|
365
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_full.html">8.11.6. highlight_full</a></li>
|
366
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_html.html">8.11.7. highlight_html</a></li>
|
367
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/html_untag.html">8.11.8. html_untag</a></li>
|
368
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/now.html">8.11.9. now</a></li>
|
369
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/query.html">8.11.10. query</a></li>
|
370
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/rand.html">8.11.11. rand</a></li>
|
371
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/snippet_html.html">8.11.12. snippet_html</a></li>
|
372
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/sub_filter.html">8.11.13. sub_filter</a></li>
|
373
|
-
</ul>
|
374
|
-
</li>
|
375
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/indexing.html">8.12. Indexing</a><ul>
|
376
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#online-index-construction">8.12.1. Online index construction</a></li>
|
377
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#offline-index-construction">8.12.2. Offline index construction</a></li>
|
378
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#how-to-use">8.12.3. How to use</a></li>
|
379
|
-
</ul>
|
380
|
-
</li>
|
381
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/log.html">8.13. Log</a><ul>
|
382
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#process-log">8.13.1. Process log</a></li>
|
383
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#query-log">8.13.2. Query log</a></li>
|
384
|
-
</ul>
|
385
|
-
</li>
|
386
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tuning.html">8.14. Tuning</a><ul>
|
387
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#summary">8.14.1. Summary</a></li>
|
388
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#parameters">8.14.2. Parameters</a></li>
|
389
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#linux">8.14.3. Linux</a></li>
|
390
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#freebsd">8.14.4. FreeBSD</a></li>
|
391
|
-
</ul>
|
392
|
-
</li>
|
393
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/api.html">8.15. API</a><ul>
|
394
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/global_configurations.html">8.15.1. Global configurations</a></li>
|
395
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_cache.html">8.15.2. <tt class="docutils literal"><span class="pre">grn_cache</span></tt></a></li>
|
396
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_column.html">8.15.3. <tt class="docutils literal"><span class="pre">grn_column</span></tt></a></li>
|
397
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_command_version.html">8.15.4. <tt class="docutils literal"><span class="pre">grn_command_version</span></tt></a></li>
|
398
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_ctx.html">8.15.5. <tt class="docutils literal"><span class="pre">grn_ctx</span></tt></a></li>
|
399
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_db.html">8.15.6. <tt class="docutils literal"><span class="pre">grn_db</span></tt></a></li>
|
400
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_encoding.html">8.15.7. <tt class="docutils literal"><span class="pre">grn_encoding</span></tt></a></li>
|
401
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_expr.html">8.15.8. grn_expr</a></li>
|
402
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_geo.html">8.15.9. <tt class="docutils literal"><span class="pre">grn_geo</span></tt></a></li>
|
403
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_hook.html">8.15.10. <tt class="docutils literal"><span class="pre">grn_hook</span></tt></a></li>
|
404
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_ii.html">8.15.11. <tt class="docutils literal"><span class="pre">grn_ii</span></tt></a></li>
|
405
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_index_cursor.html">8.15.12. <tt class="docutils literal"><span class="pre">grn_index_cursor</span></tt></a></li>
|
406
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_info.html">8.15.13. <tt class="docutils literal"><span class="pre">grn_info</span></tt></a></li>
|
407
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_match_escalation.html">8.15.14. <tt class="docutils literal"><span class="pre">grn_match_escalation</span></tt></a></li>
|
408
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_obj.html">8.15.15. <tt class="docutils literal"><span class="pre">grn_obj</span></tt></a></li>
|
409
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_proc.html">8.15.16. <tt class="docutils literal"><span class="pre">grn_proc</span></tt></a></li>
|
410
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_search.html">8.15.17. <tt class="docutils literal"><span class="pre">grn_search</span></tt></a></li>
|
411
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_table.html">8.15.18. <tt class="docutils literal"><span class="pre">grn_table</span></tt></a></li>
|
412
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_table_cursor.html">8.15.19. <tt class="docutils literal"><span class="pre">grn_table_cursor</span></tt></a></li>
|
413
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_type.html">8.15.20. <tt class="docutils literal"><span class="pre">grn_type</span></tt></a></li>
|
414
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_user_data.html">8.15.21. <tt class="docutils literal"><span class="pre">grn_user_data</span></tt></a></li>
|
415
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/plugin.html">8.15.22. Plugin</a></li>
|
416
|
-
</ul>
|
417
|
-
</li>
|
418
|
-
</ul>
|
419
|
-
</li>
|
420
|
-
<li class="toctree-l1"><a class="reference internal" href="spec.html">9. Specification</a><ul>
|
421
|
-
<li class="toctree-l2"><a class="reference internal" href="spec/gqtp.html">9.1. GQTP</a><ul>
|
422
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#protocol">9.1.1. Protocol</a></li>
|
423
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#example">9.1.2. Example</a></li>
|
424
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#see-also">9.1.3. See also</a></li>
|
425
|
-
</ul>
|
426
|
-
</li>
|
427
|
-
<li class="toctree-l2"><a class="reference internal" href="spec/search.html">9.2. 検索</a><ul>
|
428
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id2">9.2.1. 検索の挙動</a></li>
|
429
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id6">9.2.2. 検索の使い分け</a></li>
|
430
|
-
</ul>
|
431
|
-
</li>
|
432
|
-
</ul>
|
433
|
-
</li>
|
434
|
-
<li class="toctree-l1"><a class="reference internal" href="limitations.html">10. Limitations</a><ul>
|
435
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-table">10.1. Limitations of table</a></li>
|
436
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-indexing">10.2. Limitations of indexing</a></li>
|
437
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-column">10.3. Limitations of column</a></li>
|
419
|
+
<li class="toctree-l1"><a class="reference internal" href="limitations.html">9. Limitations</a><ul>
|
420
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-table">9.1. Limitations of table</a></li>
|
421
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-indexing">9.2. Limitations of indexing</a></li>
|
422
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-column">9.3. Limitations of column</a></li>
|
438
423
|
</ul>
|
439
424
|
</li>
|
440
|
-
<li class="toctree-l1"><a class="reference internal" href="troubleshooting.html">
|
441
|
-
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html">
|
442
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id2">
|
443
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id3">
|
444
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id4">
|
445
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id5">
|
425
|
+
<li class="toctree-l1"><a class="reference internal" href="troubleshooting.html">10. トラブルシューティング</a><ul>
|
426
|
+
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html">10.1. 同じ検索キーワードなのに全文検索結果が異なる</a><ul>
|
427
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id2">10.1.1. 例</a></li>
|
428
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id3">10.1.2. 原因</a></li>
|
429
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id4">10.1.3. 対策方法1: トークナイザーを変更する</a></li>
|
430
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id5">10.1.4. 対策方法2: 閾値をあげる</a></li>
|
446
431
|
</ul>
|
447
432
|
</li>
|
448
|
-
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html">
|
449
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#example">
|
450
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#solution">
|
433
|
+
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html">10.2. How to avoid mmap Cannot allocate memory error</a><ul>
|
434
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#example">10.2.1. Example</a></li>
|
435
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#solution">10.2.2. Solution</a></li>
|
451
436
|
</ul>
|
452
437
|
</li>
|
453
438
|
</ul>
|
454
439
|
</li>
|
455
|
-
<li class="toctree-l1"><a class="reference internal" href="development.html">
|
456
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html">
|
457
|
-
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#configuration">
|
458
|
-
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#examples">
|
440
|
+
<li class="toctree-l1"><a class="reference internal" href="development.html">11. Development</a><ul>
|
441
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html">11.1. Travis CI</a><ul>
|
442
|
+
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#configuration">11.1.1. Configuration</a></li>
|
443
|
+
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#examples">11.1.2. Examples</a></li>
|
459
444
|
</ul>
|
460
445
|
</li>
|
461
446
|
</ul>
|
462
447
|
</li>
|
463
|
-
<li class="toctree-l1"><a class="reference internal" href="contribution.html">
|
464
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/report.html">
|
465
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#submit-a-bug-to-the-issue-tracker">
|
466
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#report-a-bug-to-the-mailing-list">
|
448
|
+
<li class="toctree-l1"><a class="reference internal" href="contribution.html">12. How to contribute to groonga</a><ul>
|
449
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/report.html">12.1. How to report a bug</a><ul>
|
450
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#submit-a-bug-to-the-issue-tracker">12.1.1. Submit a bug to the issue tracker</a></li>
|
451
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#report-a-bug-to-the-mailing-list">12.1.2. Report a bug to the mailing list</a></li>
|
467
452
|
</ul>
|
468
453
|
</li>
|
469
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/documentation.html">
|
470
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/introduction.html">
|
471
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/i18n.html">
|
472
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/c-api.html">
|
454
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/documentation.html">12.2. How to contribute in documentation topics</a><ul>
|
455
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/introduction.html">12.2.1. Introduction</a></li>
|
456
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/i18n.html">12.2.2. I18N</a></li>
|
457
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/c-api.html">12.2.3. C API</a></li>
|
473
458
|
</ul>
|
474
459
|
</li>
|
475
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/development.html">
|
476
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/repository.html">
|
477
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/com.html">
|
478
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/cooperation.html">
|
479
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html">
|
480
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html#id5">
|
481
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/release.html">
|
482
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/test.html">
|
460
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/development.html">12.3. Groonga開発者向け情報</a><ul>
|
461
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/repository.html">12.3.1. Repository</a></li>
|
462
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/com.html">12.3.2. Groonga 通信アーキテクチャ</a></li>
|
463
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/cooperation.html">12.3.3. ユーザーと協力して開発をうまく進めていくための指針</a></li>
|
464
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html">12.3.4. クエリの実現</a></li>
|
465
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html#id5">12.3.5. クエリの実例</a></li>
|
466
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/release.html">12.3.6. リリース手順</a></li>
|
467
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/test.html">12.3.7. テスト方法</a></li>
|
483
468
|
</ul>
|
484
469
|
</li>
|
485
470
|
</ul>
|
@@ -533,7 +518,7 @@
|
|
533
518
|
<li class="right" >
|
534
519
|
<a href="characteristic.html" title="1. Characteristics of Groonga"
|
535
520
|
>next</a> |</li>
|
536
|
-
<li><a href="#">Groonga v4.0.
|
521
|
+
<li><a href="#">Groonga v4.0.6-211-g8c0bb0b documentation</a> »</li>
|
537
522
|
</ul>
|
538
523
|
</div>
|
539
524
|
<div class="footer">
|