rroonga 4.0.5-x86-mingw32 → 4.0.6-x86-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. 開発 — Groonga v4.0.6-211-g8c0bb0bドキュメント</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
|
@@ -26,9 +26,9 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v4.0.
|
30
|
-
<link rel="next" title="
|
31
|
-
<link rel="prev" title="
|
29
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0bドキュメント" href="index.html" />
|
30
|
+
<link rel="next" title="11.1. Travis CI" href="development/travis-ci.html" />
|
31
|
+
<link rel="prev" title="10.2. mmap Cannot allocate memoryエラーを回避するには" href="troubleshooting/mmap_cannot_allocate_memory.html" />
|
32
32
|
</head>
|
33
33
|
<body>
|
34
34
|
<div class="header">
|
@@ -55,12 +55,12 @@
|
|
55
55
|
<a href="genindex.html" title="総合索引"
|
56
56
|
accesskey="I">索引</a></li>
|
57
57
|
<li class="right" >
|
58
|
-
<a href="development/travis-ci.html" title="
|
58
|
+
<a href="development/travis-ci.html" title="11.1. Travis CI"
|
59
59
|
accesskey="N">次へ</a> |</li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="
|
61
|
+
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="10.2. mmap Cannot allocate memoryエラーを回避するには"
|
62
62
|
accesskey="P">前へ</a> |</li>
|
63
|
-
<li><a href="index.html">Groonga v4.0.
|
63
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
64
64
|
</ul>
|
65
65
|
</div>
|
66
66
|
|
@@ -70,13 +70,13 @@
|
|
70
70
|
<div class="body">
|
71
71
|
|
72
72
|
<div class="section" id="development">
|
73
|
-
<h1>
|
73
|
+
<h1>11. 開発<a class="headerlink" href="#development" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
74
74
|
<p>このセクションではGroongaを使った開発について説明します。例えば、Groongaをデータベースとして使ったアプリケーション、libgroongaを使ったライブラリ、libgroongaの言語バインディングなどを開発することがあるでしょう。</p>
|
75
75
|
<div class="toctree-wrapper compound">
|
76
76
|
<ul>
|
77
|
-
<li class="toctree-l1"><a class="reference internal" href="development/travis-ci.html">
|
78
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#configuration">
|
79
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#examples">
|
77
|
+
<li class="toctree-l1"><a class="reference internal" href="development/travis-ci.html">11.1. Travis CI</a><ul>
|
78
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#configuration">11.1.1. 設定</a></li>
|
79
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html#examples">11.1.2. 例</a></li>
|
80
80
|
</ul>
|
81
81
|
</li>
|
82
82
|
</ul>
|
@@ -91,10 +91,10 @@
|
|
91
91
|
<div class="sphinxsidebarwrapper">
|
92
92
|
<h4>前のトピックへ</h4>
|
93
93
|
<p class="topless"><a href="troubleshooting/mmap_cannot_allocate_memory.html"
|
94
|
-
title="前の章へ">
|
94
|
+
title="前の章へ">10.2. mmap Cannot allocate memoryエラーを回避するには</a></p>
|
95
95
|
<h4>次のトピックへ</h4>
|
96
96
|
<p class="topless"><a href="development/travis-ci.html"
|
97
|
-
title="次の章へ">
|
97
|
+
title="次の章へ">11.1. Travis CI</a></p>
|
98
98
|
<h3>このページ</h3>
|
99
99
|
<ul class="this-page-menu">
|
100
100
|
<li><a href="_sources/development.txt"
|
@@ -124,12 +124,12 @@
|
|
124
124
|
<a href="genindex.html" title="総合索引"
|
125
125
|
>索引</a></li>
|
126
126
|
<li class="right" >
|
127
|
-
<a href="development/travis-ci.html" title="
|
127
|
+
<a href="development/travis-ci.html" title="11.1. Travis CI"
|
128
128
|
>次へ</a> |</li>
|
129
129
|
<li class="right" >
|
130
|
-
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="
|
130
|
+
<a href="troubleshooting/mmap_cannot_allocate_memory.html" title="10.2. mmap Cannot allocate memoryエラーを回避するには"
|
131
131
|
>前へ</a> |</li>
|
132
|
-
<li><a href="index.html">Groonga v4.0.
|
132
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
133
133
|
</ul>
|
134
134
|
</div>
|
135
135
|
<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ドキュメント</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
|
@@ -26,10 +26,10 @@
|
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v4.0.
|
30
|
-
<link rel="up" title="
|
31
|
-
<link rel="next" title="
|
32
|
-
<link rel="prev" title="
|
29
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0bドキュメント" href="../index.html" />
|
30
|
+
<link rel="up" title="11. 開発" href="../development.html" />
|
31
|
+
<link rel="next" title="12. Groongaへのコントリビュート方法" href="../contribution.html" />
|
32
|
+
<link rel="prev" title="11. 開発" href="../development.html" />
|
33
33
|
</head>
|
34
34
|
<body>
|
35
35
|
<div class="header">
|
@@ -56,13 +56,13 @@
|
|
56
56
|
<a href="../genindex.html" title="総合索引"
|
57
57
|
accesskey="I">索引</a></li>
|
58
58
|
<li class="right" >
|
59
|
-
<a href="../contribution.html" title="
|
59
|
+
<a href="../contribution.html" title="12. Groongaへのコントリビュート方法"
|
60
60
|
accesskey="N">次へ</a> |</li>
|
61
61
|
<li class="right" >
|
62
|
-
<a href="../development.html" title="
|
62
|
+
<a href="../development.html" title="11. 開発"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li><a href="../index.html">Groonga v4.0.
|
65
|
-
<li><a href="../development.html" accesskey="U">
|
64
|
+
<li><a href="../index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
65
|
+
<li><a href="../development.html" accesskey="U">11. 開発</a> »</li>
|
66
66
|
</ul>
|
67
67
|
</div>
|
68
68
|
|
@@ -72,11 +72,11 @@
|
|
72
72
|
<div class="body">
|
73
73
|
|
74
74
|
<div class="section" id="travis-ci">
|
75
|
-
<h1>
|
75
|
+
<h1>11.1. Travis CI<a class="headerlink" href="#travis-ci" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
76
76
|
<p>このセクションでは <a class="reference external" href="http://travis-ci.org/">Travis CI</a> 上でGroongaを使う方法について説明します。Travis CIはオープンソースコミュニティ用の継続的インテグレーション(CI)サービスです。</p>
|
77
77
|
<p>オープンソースソフトウェアを開発しているならTravis CIを使えます。このセクションではGroonga関連の設定のみ説明します。Travis CI一般については <a class="reference external" href="http://about.travis-ci.org/docs/">Travis CI: Documentation</a> を読んでください。</p>
|
78
78
|
<div class="section" id="configuration">
|
79
|
-
<h2>
|
79
|
+
<h2>11.1.1. 設定<a class="headerlink" href="#configuration" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
80
80
|
<p>Travis CIは64-bit版のUbuntu 12.04 LTS サーバ版を使っています。( <a class="reference external" href="http://about.travis-ci.org/docs/user/ci-environment/">Travis CI: About Travis CI Environment</a> 参照。)Travis CIにGroongaをインストールするために、Groongaプロジェクトが提供しているUbuntu 12.04 LTS用のapt-lineを使えます。</p>
|
81
81
|
<p><tt class="docutils literal"><span class="pre">.travis.yml</span></tt> でビルド方法を変更することができます。( <a class="reference external" href="http://about.travis-ci.org/docs/user/build-configuration/">Travis CI: Conifugration your Travis CI build with .travis.yml</a> 参照。) <tt class="docutils literal"><span class="pre">before_install</span></tt> フックまたは <tt class="docutils literal"><span class="pre">install</span></tt> フックを使います。もし、Travis CIがサポートしている言語(例えばRuby)を使ったソフトウェアの場合は <tt class="docutils literal"><span class="pre">before_install</span></tt> を使います。そうでない場合は <tt class="docutils literal"><span class="pre">install</span></tt> を使います。</p>
|
82
82
|
<p>以下の <tt class="docutils literal"><span class="pre">before_install</span></tt> の設定を <tt class="docutils literal"><span class="pre">.travis.yml</span></tt> に加えます:</p>
|
@@ -88,11 +88,11 @@
|
|
88
88
|
<p>上記の設定でビルド中にGroongaを使えるようになります。</p>
|
89
89
|
</div>
|
90
90
|
<div class="section" id="examples">
|
91
|
-
<h2>
|
91
|
+
<h2>11.1.2. 例<a class="headerlink" href="#examples" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
92
92
|
<p>Travis CI上でGroongaを使っているオープンソースソフトウェアは以下の通りです</p>
|
93
93
|
<blockquote>
|
94
94
|
<div><ul class="simple">
|
95
|
-
<li><p class="first"><a class="reference external" href="http://
|
95
|
+
<li><p class="first"><a class="reference external" href="http://ranguba.org/#about-rroonga">rroonga</a> (Rubyバインディング)</p>
|
96
96
|
<ul>
|
97
97
|
<li><p class="first"><a class="reference external" href="http://travis-ci.org/#!/ranguba/rroonga">Travis CIでのrroongaのビルド結果</a></p>
|
98
98
|
</li>
|
@@ -128,19 +128,19 @@
|
|
128
128
|
<div class="sphinxsidebarwrapper">
|
129
129
|
<h3><a href="../index.html">目次</a></h3>
|
130
130
|
<ul>
|
131
|
-
<li><a class="reference internal" href="#">
|
132
|
-
<li><a class="reference internal" href="#configuration">
|
133
|
-
<li><a class="reference internal" href="#examples">
|
131
|
+
<li><a class="reference internal" href="#">11.1. Travis CI</a><ul>
|
132
|
+
<li><a class="reference internal" href="#configuration">11.1.1. 設定</a></li>
|
133
|
+
<li><a class="reference internal" href="#examples">11.1.2. 例</a></li>
|
134
134
|
</ul>
|
135
135
|
</li>
|
136
136
|
</ul>
|
137
137
|
|
138
138
|
<h4>前のトピックへ</h4>
|
139
139
|
<p class="topless"><a href="../development.html"
|
140
|
-
title="前の章へ">
|
140
|
+
title="前の章へ">11. 開発</a></p>
|
141
141
|
<h4>次のトピックへ</h4>
|
142
142
|
<p class="topless"><a href="../contribution.html"
|
143
|
-
title="次の章へ">
|
143
|
+
title="次の章へ">12. Groongaへのコントリビュート方法</a></p>
|
144
144
|
<h3>このページ</h3>
|
145
145
|
<ul class="this-page-menu">
|
146
146
|
<li><a href="../_sources/development/travis-ci.txt"
|
@@ -170,13 +170,13 @@
|
|
170
170
|
<a href="../genindex.html" title="総合索引"
|
171
171
|
>索引</a></li>
|
172
172
|
<li class="right" >
|
173
|
-
<a href="../contribution.html" title="
|
173
|
+
<a href="../contribution.html" title="12. Groongaへのコントリビュート方法"
|
174
174
|
>次へ</a> |</li>
|
175
175
|
<li class="right" >
|
176
|
-
<a href="../development.html" title="
|
176
|
+
<a href="../development.html" title="11. 開発"
|
177
177
|
>前へ</a> |</li>
|
178
|
-
<li><a href="../index.html">Groonga v4.0.
|
179
|
-
<li><a href="../development.html" >
|
178
|
+
<li><a href="../index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
179
|
+
<li><a href="../development.html" >11. 開発</a> »</li>
|
180
180
|
</ul>
|
181
181
|
</div>
|
182
182
|
<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>索引 — Groonga v4.0.
|
11
|
+
<title>索引 — Groonga v4.0.6-211-g8c0bb0bドキュメント</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
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
28
28
|
<script type="text/javascript" src="_static/translations.js"></script>
|
29
29
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
30
|
-
<link rel="top" title="Groonga v4.0.
|
30
|
+
<link rel="top" title="Groonga v4.0.6-211-g8c0bb0bドキュメント" href="index.html" />
|
31
31
|
</head>
|
32
32
|
<body>
|
33
33
|
<div class="header">
|
@@ -53,7 +53,7 @@
|
|
53
53
|
<li class="right" style="margin-right: 10px">
|
54
54
|
<a href="#" title="総合索引"
|
55
55
|
accesskey="I">索引</a></li>
|
56
|
-
<li><a href="index.html">Groonga v4.0.
|
56
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
57
57
|
</ul>
|
58
58
|
</div>
|
59
59
|
|
@@ -66,15 +66,15 @@
|
|
66
66
|
<h1 id="index">索引</h1>
|
67
67
|
|
68
68
|
<div class="genindex-jumpbox">
|
69
|
-
<a href="
|
69
|
+
<a href="#記号"><strong>記号</strong></a>
|
70
70
|
| <a href="#C"><strong>C</strong></a>
|
71
71
|
| <a href="#D"><strong>D</strong></a>
|
72
72
|
| <a href="#G"><strong>G</strong></a>
|
73
73
|
| <a href="#S"><strong>S</strong></a>
|
74
|
-
| <a href="
|
74
|
+
| <a href="#記号"><strong>記号</strong></a>
|
75
75
|
|
76
76
|
</div>
|
77
|
-
<h2 id="
|
77
|
+
<h2 id="記号">記号</h2>
|
78
78
|
<table style="width: 100%" class="indextable genindextable"><tr>
|
79
79
|
<td style="width: 33%" valign="top"><dl>
|
80
80
|
|
@@ -685,6 +685,10 @@
|
|
685
685
|
</dt>
|
686
686
|
|
687
687
|
|
688
|
+
<dt><a href="reference/api/grn_content_type.html#c.grn_content_type">grn_content_type (C のデータ型)</a>
|
689
|
+
</dt>
|
690
|
+
|
691
|
+
|
688
692
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx">grn_ctx (C のデータ型)</a>
|
689
693
|
</dt>
|
690
694
|
|
@@ -717,6 +721,10 @@
|
|
717
721
|
</dt>
|
718
722
|
|
719
723
|
|
724
|
+
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_get_output_type">grn_ctx_get_output_type (C の関数)</a>
|
725
|
+
</dt>
|
726
|
+
|
727
|
+
|
720
728
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_init">grn_ctx_init (C の関数)</a>
|
721
729
|
</dt>
|
722
730
|
|
@@ -737,6 +745,10 @@
|
|
737
745
|
</dt>
|
738
746
|
|
739
747
|
|
748
|
+
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_set_output_type">grn_ctx_set_output_type (C の関数)</a>
|
749
|
+
</dt>
|
750
|
+
|
751
|
+
|
740
752
|
<dt><a href="reference/api/grn_ctx.html#c.grn_ctx_use">grn_ctx_use (C の関数)</a>
|
741
753
|
</dt>
|
742
754
|
|
@@ -821,6 +833,10 @@
|
|
821
833
|
</dt>
|
822
834
|
|
823
835
|
|
836
|
+
<dt><a href="reference/api/grn_expr.html#c.grn_expr_get_keywords">grn_expr_get_keywords (C の関数)</a>
|
837
|
+
</dt>
|
838
|
+
|
839
|
+
|
824
840
|
<dt><a href="reference/api/grn_expr.html#c.grn_expr_get_var_by_offset">grn_expr_get_var_by_offset (C の関数)</a>
|
825
841
|
</dt>
|
826
842
|
|
@@ -952,6 +968,8 @@
|
|
952
968
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_defrag">grn_obj_defrag (C の関数)</a>
|
953
969
|
</dt>
|
954
970
|
|
971
|
+
</dl></td>
|
972
|
+
<td style="width: 33%" valign="top"><dl>
|
955
973
|
|
956
974
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_delete_by_id">grn_obj_delete_by_id (C の関数)</a>
|
957
975
|
</dt>
|
@@ -960,8 +978,6 @@
|
|
960
978
|
<dt><a href="reference/api/grn_hook.html#c.grn_obj_delete_hook">grn_obj_delete_hook (C の関数)</a>
|
961
979
|
</dt>
|
962
980
|
|
963
|
-
</dl></td>
|
964
|
-
<td style="width: 33%" valign="top"><dl>
|
965
981
|
|
966
982
|
<dt><a href="reference/api/grn_obj.html#c.grn_obj_expire">grn_obj_expire (C の関数)</a>
|
967
983
|
</dt>
|
@@ -1366,7 +1382,7 @@
|
|
1366
1382
|
</dl></td>
|
1367
1383
|
</tr></table>
|
1368
1384
|
|
1369
|
-
<h2 id="
|
1385
|
+
<h2 id="記号">記号</h2>
|
1370
1386
|
<table style="width: 100%" class="indextable genindextable"><tr>
|
1371
1387
|
<td style="width: 33%" valign="top"><dl>
|
1372
1388
|
|
@@ -1588,7 +1604,7 @@
|
|
1588
1604
|
<li class="right" style="margin-right: 10px">
|
1589
1605
|
<a href="#" title="総合索引"
|
1590
1606
|
>索引</a></li>
|
1591
|
-
<li><a href="index.html">Groonga v4.0.
|
1607
|
+
<li><a href="index.html">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
1592
1608
|
</ul>
|
1593
1609
|
</div>
|
1594
1610
|
<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 ドキュメント — Groonga v4.0.
|
10
|
+
<title>Groonga ドキュメント — Groonga v4.0.6-211-g8c0bb0bドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.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ドキュメント" href="#" />
|
30
30
|
<link rel="next" title="1. Groongaの特徴" href="characteristic.html" />
|
31
31
|
</head>
|
32
32
|
<body>
|
@@ -56,7 +56,7 @@
|
|
56
56
|
<li class="right" >
|
57
57
|
<a href="characteristic.html" title="1. Groongaの特徴"
|
58
58
|
accesskey="N">次へ</a> |</li>
|
59
|
-
<li><a href="#">Groonga v4.0.
|
59
|
+
<li><a href="#">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
60
60
|
</ul>
|
61
61
|
</div>
|
62
62
|
|
@@ -218,269 +218,254 @@
|
|
218
218
|
</li>
|
219
219
|
</ul>
|
220
220
|
</li>
|
221
|
-
<li class="toctree-l1"><a class="reference internal" href="
|
222
|
-
<li class="toctree-l2"><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
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
226
|
-
|
221
|
+
<li class="toctree-l1"><a class="reference internal" href="server.html">5. サーバー</a><ul>
|
222
|
+
<li class="toctree-l2"><a class="reference internal" href="server/package.html">5.1. サーバーパッケージ</a><ul>
|
223
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-httpd">5.1.1. groonga-httpd</a></li>
|
224
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-server-http">5.1.2. groonga-server-http</a></li>
|
225
|
+
<li class="toctree-l3"><a class="reference internal" href="server/package.html#groonga-server-gqtp">5.1.3. groonga-server-gqtp</a></li>
|
226
|
+
</ul>
|
227
|
+
</li>
|
228
|
+
<li class="toctree-l2"><a class="reference internal" href="server/gqtp.html">5.2. GQTP</a></li>
|
229
|
+
<li class="toctree-l2"><a class="reference internal" href="server/http.html">5.3. HTTP</a><ul>
|
230
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/comparison.html">5.3.1. 比較</a></li>
|
231
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga.html">5.3.2. groonga</a></li>
|
232
|
+
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
|
233
|
+
</ul>
|
234
|
+
</li>
|
235
|
+
</ul>
|
236
|
+
</li>
|
237
|
+
<li class="toctree-l1"><a class="reference internal" href="client.html">6. クライアント</a></li>
|
238
|
+
<li class="toctree-l1"><a class="reference internal" href="reference.html">7. リファレンスマニュアル</a><ul>
|
239
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/executables.html">7.1. 実行ファイル</a><ul>
|
240
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/grnslap.html">7.1.1. grnslap</a></li>
|
241
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga.html">7.1.2. groongaコマンド</a></li>
|
242
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-benchmark.html">7.1.3. groonga-benchmark</a></li>
|
243
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-httpd.html">7.1.4. groonga-httpd</a></li>
|
244
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-server-http.html">7.1.5. groonga HTTPサーバー</a></li>
|
245
|
+
<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>
|
246
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-httpd.html">7.1.7. groonga-suggest-httpd</a></li>
|
247
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-learner.html">7.1.8. groonga-suggest-learner</a></li>
|
248
|
+
</ul>
|
249
|
+
</li>
|
250
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/output.html">7.2. 出力</a><ul>
|
251
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/output.html#usage">7.2.1. 使い方</a></li>
|
252
|
+
</ul>
|
253
|
+
</li>
|
254
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/command.html">7.3. コマンド</a><ul>
|
255
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/command_version.html">7.3.1. コマンドバージョン</a></li>
|
256
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/output_format.html">7.3.2. 出力形式</a></li>
|
257
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/command/return_code.html">7.3.3. リターンコード</a></li>
|
258
|
+
<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>
|
259
|
+
<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>
|
260
|
+
<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>
|
261
|
+
<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>
|
262
|
+
<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>
|
263
|
+
<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>
|
264
|
+
<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>
|
265
|
+
<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>
|
266
|
+
<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>
|
267
|
+
<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>
|
268
|
+
<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>
|
269
|
+
<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>
|
270
|
+
<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>
|
271
|
+
<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>
|
272
|
+
<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>
|
273
|
+
<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>
|
274
|
+
<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>
|
275
|
+
<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>
|
276
|
+
<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>
|
277
|
+
<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>
|
278
|
+
<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>
|
279
|
+
<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>
|
280
|
+
<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>
|
281
|
+
<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>
|
282
|
+
<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>
|
283
|
+
<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>
|
284
|
+
<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>
|
285
|
+
<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>
|
286
|
+
<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>
|
287
|
+
<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>
|
288
|
+
<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>
|
289
|
+
<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>
|
290
|
+
</ul>
|
291
|
+
</li>
|
292
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/types.html">7.4. データ型</a><ul>
|
293
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id2">7.4.1. 名前</a></li>
|
294
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id3">7.4.2. 説明</a></li>
|
295
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id4">7.4.3. 組込型</a></li>
|
296
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id6">7.4.4. 型に関する制限事項</a></li>
|
297
|
+
</ul>
|
298
|
+
</li>
|
299
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tables.html">7.5. テーブル</a><ul>
|
300
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#summary">7.5.1. 概要</a></li>
|
301
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#characteristics">7.5.2. 特徴</a></li>
|
302
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#record-id">7.5.3. レコードID</a></li>
|
303
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#persistent-table-and-temporary-table">7.5.4. 永続テーブルと一時テーブル</a></li>
|
304
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#limitations">7.5.5. 制限</a></li>
|
305
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#see-also">7.5.6. 参考</a></li>
|
306
|
+
</ul>
|
307
|
+
</li>
|
308
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/column.html">7.6. カラム</a></li>
|
309
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/normalizers.html">7.7. ノーマライザー</a><ul>
|
310
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#summary">7.7.1. 概要</a></li>
|
311
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#built-in-normalizers">7.7.2. 組み込みノーマライザー</a></li>
|
312
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#additional-normalizers">7.7.3. 追加のノーマライザー</a></li>
|
313
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#see-also">7.7.4. 参考</a></li>
|
314
|
+
</ul>
|
315
|
+
</li>
|
316
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tokenizers.html">7.8. Tokenizers</a></li>
|
317
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/token_filters.html">7.9. Token filters</a><ul>
|
318
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#summary">7.9.1. 概要</a></li>
|
319
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#available-token-filters">7.9.2. 利用可能なトークンフィルター</a></li>
|
320
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/token_filters.html#see-also">7.9.3. 参考</a></li>
|
321
|
+
</ul>
|
322
|
+
</li>
|
323
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/query_expanders.html">7.10. クエリー展開オブジェクト一覧</a><ul>
|
324
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/query_expanders/tsv.html">7.10.1. QueryExpanderTSV</a></li>
|
325
|
+
</ul>
|
326
|
+
</li>
|
327
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/grn_expr.html">7.11. grn_expr</a><ul>
|
328
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/query_syntax.html">7.11.1. クエリー構文</a></li>
|
329
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/script_syntax.html">7.11.2. スクリプト構文</a></li>
|
330
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr.html#see-also">7.11.3. 参考</a></li>
|
331
|
+
</ul>
|
332
|
+
</li>
|
333
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/function.html">7.12. 関数</a><ul>
|
334
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/between.html">7.12.1. between</a></li>
|
335
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/edit_distance.html">7.12.2. edit_distance</a></li>
|
336
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_distance.html">7.12.3. geo_distance</a></li>
|
337
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_circle.html">7.12.4. geo_in_circle</a></li>
|
338
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_rectangle.html">7.12.5. geo_in_rectangle</a></li>
|
339
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_full.html">7.12.6. highlight_full</a></li>
|
340
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_html.html">7.12.7. highlight_html</a></li>
|
341
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/html_untag.html">7.12.8. html_untag</a></li>
|
342
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/now.html">7.12.9. now</a></li>
|
343
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/query.html">7.12.10. query</a></li>
|
344
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/rand.html">7.12.11. rand</a></li>
|
345
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/snippet_html.html">7.12.12. snippet_html</a></li>
|
346
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/functions/sub_filter.html">7.12.13. sub_filter</a></li>
|
227
347
|
</ul>
|
228
348
|
</li>
|
229
|
-
<li class="toctree-l2"><a class="reference internal" href="
|
230
|
-
<li class="toctree-
|
231
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-it-works">5.3.1. どのように動作するか</a></li>
|
232
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-to-use">5.3.2. 使い方</a></li>
|
233
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/completion.html#how-it-learns">5.3.3. 学習方法</a></li>
|
234
|
-
<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>
|
349
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/operations.html">7.13. 操作方法</a><ul>
|
350
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/operations/geolocation_search.html">7.13.1. 位置情報検索</a></li>
|
235
351
|
</ul>
|
236
352
|
</li>
|
237
|
-
<li class="toctree-l2"><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/
|
240
|
-
<li class="toctree-l3"><a class="reference internal" href="suggest/correction.html
|
353
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/suggest.html">7.14. サジェスト</a><ul>
|
354
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/introduction.html">7.14.1. はじめに</a></li>
|
355
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/completion.html">7.14.2. 補完</a></li>
|
356
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/correction.html">7.14.3. 補正</a></li>
|
357
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/suggest/suggestion.html">7.14.4. 提案</a></li>
|
241
358
|
</ul>
|
242
359
|
</li>
|
243
|
-
<li class="toctree-l2"><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="
|
247
|
-
<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>
|
360
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/indexing.html">7.15. インデックス構築</a><ul>
|
361
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#online-index-construction">7.15.1. 動的なインデックス構築方法</a></li>
|
362
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#offline-index-construction">7.15.2. 静的なインデックス構築方法</a></li>
|
363
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#how-to-use">7.15.3. 使い方</a></li>
|
248
364
|
</ul>
|
249
365
|
</li>
|
366
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/log.html">7.16. Log</a><ul>
|
367
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#process-log">7.16.1. Process log</a></li>
|
368
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#query-log">7.16.2. Query log</a></li>
|
250
369
|
</ul>
|
251
370
|
</li>
|
252
|
-
<li class="toctree-
|
253
|
-
<li class="toctree-
|
371
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/tuning.html">7.17. Tuning</a><ul>
|
372
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#summary">7.17.1. 概要</a></li>
|
373
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#parameters">7.17.2. 引数</a></li>
|
374
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#linux">7.17.3. Linux</a></li>
|
375
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#freebsd">7.17.4. FreeBSD</a></li>
|
254
376
|
</ul>
|
255
377
|
</li>
|
256
|
-
<li class="toctree-
|
257
|
-
<li class="toctree-
|
258
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
259
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
260
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
378
|
+
<li class="toctree-l2"><a class="reference internal" href="reference/api.html">7.18. API</a><ul>
|
379
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/global_configurations.html">7.18.1. 全体設定</a></li>
|
380
|
+
<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>
|
381
|
+
<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>
|
382
|
+
<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>
|
383
|
+
<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>
|
384
|
+
<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>
|
385
|
+
<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>
|
386
|
+
<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>
|
387
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_expr.html">7.18.9. grn_expr</a></li>
|
388
|
+
<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>
|
389
|
+
<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>
|
390
|
+
<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>
|
391
|
+
<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>
|
392
|
+
<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>
|
393
|
+
<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>
|
394
|
+
<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>
|
395
|
+
<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>
|
396
|
+
<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>
|
397
|
+
<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>
|
398
|
+
<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>
|
399
|
+
<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>
|
400
|
+
<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>
|
401
|
+
<li class="toctree-l3"><a class="reference internal" href="reference/api/plugin.html">7.18.23. Plugin</a></li>
|
261
402
|
</ul>
|
262
403
|
</li>
|
263
|
-
<li class="toctree-l2"><a class="reference internal" href="server/gqtp.html">7.2. GQTP</a></li>
|
264
|
-
<li class="toctree-l2"><a class="reference internal" href="server/http.html">7.3. HTTP</a><ul>
|
265
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/comparison.html">7.3.1. 比較</a></li>
|
266
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga.html">7.3.2. groonga</a></li>
|
267
|
-
<li class="toctree-l3"><a class="reference internal" href="server/http/groonga-httpd.html">7.3.3. groonga-httpd</a></li>
|
268
404
|
</ul>
|
269
405
|
</li>
|
406
|
+
<li class="toctree-l1"><a class="reference internal" href="spec.html">8. 仕様</a><ul>
|
407
|
+
<li class="toctree-l2"><a class="reference internal" href="spec/gqtp.html">8.1. GQTP</a><ul>
|
408
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#protocol">8.1.1. プロトコル</a></li>
|
409
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#example">8.1.2. 例</a></li>
|
410
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#see-also">8.1.3. 参照</a></li>
|
270
411
|
</ul>
|
271
412
|
</li>
|
272
|
-
<li class="toctree-
|
273
|
-
<li class="toctree-
|
274
|
-
<li class="toctree-l3"><a class="reference internal" href="
|
275
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga.html">8.1.2. groongaコマンド</a></li>
|
276
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-benchmark.html">8.1.3. groonga-benchmark</a></li>
|
277
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-httpd.html">8.1.4. groonga-httpd</a></li>
|
278
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-server-http.html">8.1.5. groonga HTTPサーバー</a></li>
|
279
|
-
<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>
|
280
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-httpd.html">8.1.7. groonga-suggest-httpd</a></li>
|
281
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/executables/groonga-suggest-learner.html">8.1.8. groonga-suggest-learner</a></li>
|
413
|
+
<li class="toctree-l2"><a class="reference internal" href="spec/search.html">8.2. 検索</a><ul>
|
414
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id2">8.2.1. 検索の挙動</a></li>
|
415
|
+
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id6">8.2.2. 検索の使い分け</a></li>
|
282
416
|
</ul>
|
283
417
|
</li>
|
284
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/output.html">8.2. 出力</a><ul>
|
285
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/output.html#usage">8.2.1. 使い方</a></li>
|
286
418
|
</ul>
|
287
419
|
</li>
|
288
|
-
<li class="toctree-
|
289
|
-
<li class="toctree-
|
290
|
-
<li class="toctree-
|
291
|
-
<li class="toctree-
|
292
|
-
<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>
|
293
|
-
<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>
|
294
|
-
<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>
|
295
|
-
<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>
|
296
|
-
<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>
|
297
|
-
<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>
|
298
|
-
<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>
|
299
|
-
<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>
|
300
|
-
<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>
|
301
|
-
<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>
|
302
|
-
<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>
|
303
|
-
<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>
|
304
|
-
<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>
|
305
|
-
<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>
|
306
|
-
<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>
|
307
|
-
<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>
|
308
|
-
<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>
|
309
|
-
<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>
|
310
|
-
<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>
|
311
|
-
<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>
|
312
|
-
<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>
|
313
|
-
<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>
|
314
|
-
<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>
|
315
|
-
<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>
|
316
|
-
<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>
|
317
|
-
<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>
|
318
|
-
<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>
|
319
|
-
<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>
|
320
|
-
<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>
|
321
|
-
<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>
|
322
|
-
<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>
|
323
|
-
</ul>
|
324
|
-
</li>
|
325
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/types.html">8.4. データ型</a><ul>
|
326
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id2">8.4.1. 名前</a></li>
|
327
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id3">8.4.2. 説明</a></li>
|
328
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id4">8.4.3. 組込型</a></li>
|
329
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/types.html#id6">8.4.4. 型に関する制限事項</a></li>
|
330
|
-
</ul>
|
331
|
-
</li>
|
332
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tables.html">8.5. テーブル</a><ul>
|
333
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#summary">8.5.1. 概要</a></li>
|
334
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#characteristics">8.5.2. 特徴</a></li>
|
335
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#record-id">8.5.3. レコードID</a></li>
|
336
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#persistent-table-and-temporary-table">8.5.4. 永続テーブルと一時テーブル</a></li>
|
337
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#limitations">8.5.5. 制限</a></li>
|
338
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tables.html#see-also">8.5.6. 参考</a></li>
|
339
|
-
</ul>
|
340
|
-
</li>
|
341
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/column.html">8.6. カラム</a></li>
|
342
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/normalizers.html">8.7. ノーマライザー</a><ul>
|
343
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#summary">8.7.1. 概要</a></li>
|
344
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#built-in-normalizers">8.7.2. 組み込みノーマライザー</a></li>
|
345
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#additional-normalizers">8.7.3. 追加のノーマライザー</a></li>
|
346
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/normalizers.html#see-also">8.7.4. 参考</a></li>
|
347
|
-
</ul>
|
348
|
-
</li>
|
349
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tokenizers.html">8.8. Tokenizers</a></li>
|
350
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/query_expanders.html">8.9. クエリー展開オブジェクト一覧</a><ul>
|
351
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/query_expanders/tsv.html">8.9.1. QueryExpanderTSV</a></li>
|
352
|
-
</ul>
|
353
|
-
</li>
|
354
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/grn_expr.html">8.10. grn_expr</a><ul>
|
355
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/query_syntax.html">8.10.1. クエリー構文</a></li>
|
356
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr/script_syntax.html">8.10.2. スクリプト構文</a></li>
|
357
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/grn_expr.html#see-also">8.10.3. 参考</a></li>
|
358
|
-
</ul>
|
359
|
-
</li>
|
360
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/function.html">8.11. 関数</a><ul>
|
361
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/between.html">8.11.1. between</a></li>
|
362
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/edit_distance.html">8.11.2. edit_distance</a></li>
|
363
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_distance.html">8.11.3. geo_distance</a></li>
|
364
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_circle.html">8.11.4. geo_in_circle</a></li>
|
365
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/geo_in_rectangle.html">8.11.5. geo_in_rectangle</a></li>
|
366
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_full.html">8.11.6. highlight_full</a></li>
|
367
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/highlight_html.html">8.11.7. highlight_html</a></li>
|
368
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/html_untag.html">8.11.8. html_untag</a></li>
|
369
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/now.html">8.11.9. now</a></li>
|
370
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/query.html">8.11.10. query</a></li>
|
371
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/rand.html">8.11.11. rand</a></li>
|
372
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/snippet_html.html">8.11.12. snippet_html</a></li>
|
373
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/functions/sub_filter.html">8.11.13. sub_filter</a></li>
|
374
|
-
</ul>
|
375
|
-
</li>
|
376
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/indexing.html">8.12. インデックス構築</a><ul>
|
377
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#online-index-construction">8.12.1. 動的なインデックス構築方法</a></li>
|
378
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#offline-index-construction">8.12.2. 静的なインデックス構築方法</a></li>
|
379
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/indexing.html#how-to-use">8.12.3. 使い方</a></li>
|
380
|
-
</ul>
|
381
|
-
</li>
|
382
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/log.html">8.13. Log</a><ul>
|
383
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#process-log">8.13.1. Process log</a></li>
|
384
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/log.html#query-log">8.13.2. Query log</a></li>
|
385
|
-
</ul>
|
386
|
-
</li>
|
387
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/tuning.html">8.14. Tuning</a><ul>
|
388
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#summary">8.14.1. 概要</a></li>
|
389
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#parameters">8.14.2. 引数</a></li>
|
390
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#linux">8.14.3. Linux</a></li>
|
391
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/tuning.html#freebsd">8.14.4. FreeBSD</a></li>
|
392
|
-
</ul>
|
393
|
-
</li>
|
394
|
-
<li class="toctree-l2"><a class="reference internal" href="reference/api.html">8.15. API</a><ul>
|
395
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/global_configurations.html">8.15.1. 全体設定</a></li>
|
396
|
-
<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>
|
397
|
-
<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>
|
398
|
-
<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>
|
399
|
-
<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>
|
400
|
-
<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>
|
401
|
-
<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>
|
402
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/grn_expr.html">8.15.8. grn_expr</a></li>
|
403
|
-
<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>
|
404
|
-
<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>
|
405
|
-
<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>
|
406
|
-
<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>
|
407
|
-
<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>
|
408
|
-
<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>
|
409
|
-
<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>
|
410
|
-
<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>
|
411
|
-
<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>
|
412
|
-
<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>
|
413
|
-
<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>
|
414
|
-
<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>
|
415
|
-
<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>
|
416
|
-
<li class="toctree-l3"><a class="reference internal" href="reference/api/plugin.html">8.15.22. Plugin</a></li>
|
417
|
-
</ul>
|
418
|
-
</li>
|
419
|
-
</ul>
|
420
|
-
</li>
|
421
|
-
<li class="toctree-l1"><a class="reference internal" href="spec.html">9. 仕様</a><ul>
|
422
|
-
<li class="toctree-l2"><a class="reference internal" href="spec/gqtp.html">9.1. GQTP</a><ul>
|
423
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#protocol">9.1.1. プロトコル</a></li>
|
424
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#example">9.1.2. 例</a></li>
|
425
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/gqtp.html#see-also">9.1.3. 参照</a></li>
|
426
|
-
</ul>
|
427
|
-
</li>
|
428
|
-
<li class="toctree-l2"><a class="reference internal" href="spec/search.html">9.2. 検索</a><ul>
|
429
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id2">9.2.1. 検索の挙動</a></li>
|
430
|
-
<li class="toctree-l3"><a class="reference internal" href="spec/search.html#id6">9.2.2. 検索の使い分け</a></li>
|
431
|
-
</ul>
|
432
|
-
</li>
|
433
|
-
</ul>
|
434
|
-
</li>
|
435
|
-
<li class="toctree-l1"><a class="reference internal" href="limitations.html">10. 制限事項</a><ul>
|
436
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-table">10.1. テーブルの制限</a></li>
|
437
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-indexing">10.2. インデックス上限値</a></li>
|
438
|
-
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-column">10.3. カラムの制限</a></li>
|
420
|
+
<li class="toctree-l1"><a class="reference internal" href="limitations.html">9. 制限事項</a><ul>
|
421
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-table">9.1. テーブルの制限</a></li>
|
422
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-indexing">9.2. インデックス上限値</a></li>
|
423
|
+
<li class="toctree-l2"><a class="reference internal" href="limitations.html#limitations-of-column">9.3. カラムの制限</a></li>
|
439
424
|
</ul>
|
440
425
|
</li>
|
441
|
-
<li class="toctree-l1"><a class="reference internal" href="troubleshooting.html">
|
442
|
-
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html">
|
443
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id2">
|
444
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id3">
|
445
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id4">
|
446
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id5">
|
426
|
+
<li class="toctree-l1"><a class="reference internal" href="troubleshooting.html">10. トラブルシューティング</a><ul>
|
427
|
+
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html">10.1. 同じ検索キーワードなのに全文検索結果が異なる</a><ul>
|
428
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id2">10.1.1. 例</a></li>
|
429
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id3">10.1.2. 原因</a></li>
|
430
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id4">10.1.3. 対策方法1: トークナイザーを変更する</a></li>
|
431
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/different_results_with_the_same_keyword.html#id5">10.1.4. 対策方法2: 閾値をあげる</a></li>
|
447
432
|
</ul>
|
448
433
|
</li>
|
449
|
-
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html">
|
450
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#example">
|
451
|
-
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#solution">
|
434
|
+
<li class="toctree-l2"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html">10.2. mmap Cannot allocate memoryエラーを回避するには</a><ul>
|
435
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#example">10.2.1. 例</a></li>
|
436
|
+
<li class="toctree-l3"><a class="reference internal" href="troubleshooting/mmap_cannot_allocate_memory.html#solution">10.2.2. 対策方法</a></li>
|
452
437
|
</ul>
|
453
438
|
</li>
|
454
439
|
</ul>
|
455
440
|
</li>
|
456
|
-
<li class="toctree-l1"><a class="reference internal" href="development.html">
|
457
|
-
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html">
|
458
|
-
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#configuration">
|
459
|
-
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#examples">
|
441
|
+
<li class="toctree-l1"><a class="reference internal" href="development.html">11. 開発</a><ul>
|
442
|
+
<li class="toctree-l2"><a class="reference internal" href="development/travis-ci.html">11.1. Travis CI</a><ul>
|
443
|
+
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#configuration">11.1.1. 設定</a></li>
|
444
|
+
<li class="toctree-l3"><a class="reference internal" href="development/travis-ci.html#examples">11.1.2. 例</a></li>
|
460
445
|
</ul>
|
461
446
|
</li>
|
462
447
|
</ul>
|
463
448
|
</li>
|
464
|
-
<li class="toctree-l1"><a class="reference internal" href="contribution.html">
|
465
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/report.html">
|
466
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#submit-a-bug-to-the-issue-tracker">
|
467
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#report-a-bug-to-the-mailing-list">
|
449
|
+
<li class="toctree-l1"><a class="reference internal" href="contribution.html">12. Groongaへのコントリビュート方法</a><ul>
|
450
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/report.html">12.1. バグレポートの送り方</a><ul>
|
451
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#submit-a-bug-to-the-issue-tracker">12.1.1. 課題追跡システムへ登録する</a></li>
|
452
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/report.html#report-a-bug-to-the-mailing-list">12.1.2. メーリングリストへ報告する</a></li>
|
468
453
|
</ul>
|
469
454
|
</li>
|
470
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/documentation.html">
|
471
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/introduction.html">
|
472
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/i18n.html">
|
473
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/c-api.html">
|
455
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/documentation.html">12.2. ドキュメント関連のコントリビュート方法</a><ul>
|
456
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/introduction.html">12.2.1. Introduction</a></li>
|
457
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/i18n.html">12.2.2. 国際化</a></li>
|
458
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/documentation/c-api.html">12.2.3. C API</a></li>
|
474
459
|
</ul>
|
475
460
|
</li>
|
476
|
-
<li class="toctree-l2"><a class="reference internal" href="contribution/development.html">
|
477
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/repository.html">
|
478
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/com.html">
|
479
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/cooperation.html">
|
480
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html">
|
481
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html#id5">
|
482
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/release.html">
|
483
|
-
<li class="toctree-l3"><a class="reference internal" href="contribution/development/test.html">
|
461
|
+
<li class="toctree-l2"><a class="reference internal" href="contribution/development.html">12.3. Groonga開発者向け情報</a><ul>
|
462
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/repository.html">12.3.1. リポジトリ</a></li>
|
463
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/com.html">12.3.2. Groonga 通信アーキテクチャ</a></li>
|
464
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/cooperation.html">12.3.3. ユーザーと協力して開発をうまく進めていくための指針</a></li>
|
465
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html">12.3.4. クエリの実現</a></li>
|
466
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/query.html#id5">12.3.5. クエリの実例</a></li>
|
467
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/release.html">12.3.6. リリース手順</a></li>
|
468
|
+
<li class="toctree-l3"><a class="reference internal" href="contribution/development/test.html">12.3.7. テスト方法</a></li>
|
484
469
|
</ul>
|
485
470
|
</li>
|
486
471
|
</ul>
|
@@ -534,7 +519,7 @@
|
|
534
519
|
<li class="right" >
|
535
520
|
<a href="characteristic.html" title="1. Groongaの特徴"
|
536
521
|
>次へ</a> |</li>
|
537
|
-
<li><a href="#">Groonga v4.0.
|
522
|
+
<li><a href="#">Groonga v4.0.6-211-g8c0bb0bドキュメント</a> »</li>
|
538
523
|
</ul>
|
539
524
|
</div>
|
540
525
|
<div class="footer">
|