rroonga 4.0.8-x86-mingw32 → 5.0.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/README.md +2 -2
 - data/doc/text/news.textile +19 -0
 - data/ext/groonga/rb-grn-exception.c +35 -1
 - data/ext/groonga/rb-grn-normalizer.c +37 -7
 - data/ext/groonga/rb-grn-table.c +106 -35
 - data/ext/groonga/rb-grn.h +3 -2
 - 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/record.rb +45 -1
 - data/rroonga-build.rb +6 -5
 - data/test/groonga-test-utils.rb +9 -0
 - data/test/test-array.rb +11 -0
 - data/test/test-exception.rb +3 -1
 - data/test/test-normalizer.rb +28 -0
 - data/test/test-record.rb +34 -0
 - data/test/test-table-group.rb +366 -0
 - data/test/test-table.rb +0 -182
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libonig-5.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga.h +2 -1
 - data/vendor/local/include/groonga/groonga/command.h +79 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +32 -74
 - data/vendor/local/include/groonga/groonga/output.h +108 -0
 - data/vendor/local/include/groonga/groonga/plugin.h +18 -3
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +3 -3
 - data/vendor/local/lib/groonga/plugins/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 +3 -3
 - 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 +3 -3
 - data/vendor/local/lib/groonga/plugins/sharding.rb +3 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +157 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +170 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +50 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +3 -3
 - data/vendor/local/lib/groonga/plugins/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 +3 -3
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
 - data/vendor/local/lib/groonga/scripts/ruby/command.rb +35 -0
 - data/vendor/local/lib/groonga/scripts/ruby/{command → command_line}/grndb.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/context.rb +29 -8
 - data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +166 -76
 - data/vendor/local/lib/groonga/scripts/ruby/database.rb +16 -4
 - data/vendor/local/lib/groonga/scripts/ruby/error.rb +16 -0
 - data/vendor/local/lib/groonga/scripts/ruby/index_cursor.rb +18 -0
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +10 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger.rb +5 -1
 - data/vendor/local/lib/groonga/scripts/ruby/plugin_loader.rb +14 -0
 - data/vendor/local/lib/groonga/scripts/ruby/require.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +3 -3
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +4 -2
 - data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +15 -0
 - data/vendor/local/lib/groonga/scripts/ruby/writer.rb +21 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +3 -3
 - data/vendor/local/lib/liblz4.a +0 -0
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
 - data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
 - data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
 - data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/sbin/groonga-httpd.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - 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 +4 -4
 - 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 +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +4 -4
 - 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 +16 -570
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +5 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +686 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +12 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/index.txt +19 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/pseudo.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/scalar.txt +19 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +734 -29
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +25 -23
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +26 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/client.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/community.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/development.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/index.html +86 -78
 - data/vendor/local/share/doc/groonga/en/html/install.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +31 -29
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +33 -30
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +90 -88
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/news.html +99 -641
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +103 -100
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +72 -70
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +873 -0
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +83 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +68 -66
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +66 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +31 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +67 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +77 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +63 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +52 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +152 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +56 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +152 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +121 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +97 -95
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +42 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +74 -72
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +40 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3069 -567
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +66 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +123 -121
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +82 -80
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +39 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +76 -74
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +58 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +82 -80
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +42 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +42 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +219 -216
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +430 -381
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +52 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +58 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +46 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +39 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/search.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/spec.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +128 -126
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +53 -51
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - 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 +4 -4
 - 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 +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +4 -4
 - 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 +16 -570
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +5 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +686 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +12 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/index.txt +19 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/pseudo.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/scalar.txt +19 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +734 -29
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +26 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/client.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/community.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/development.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
 - data/vendor/local/share/doc/groonga/ja/html/index.html +88 -80
 - data/vendor/local/share/doc/groonga/ja/html/install.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +40 -38
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +30 -29
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +81 -79
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +31 -30
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/news.html +85 -677
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +94 -92
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +911 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +85 -77
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +70 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +78 -76
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +63 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +153 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +56 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +153 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +111 -84
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +50 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +100 -98
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +66 -64
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +40 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +38 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +57 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2832 -427
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +64 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +99 -97
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +67 -65
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +40 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +50 -45
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +64 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +58 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +70 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +119 -117
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +341 -301
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +35 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/search.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +127 -125
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +50 -48
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
 - data/vendor/local/share/man/ja/man1/groonga.1 +6711 -3135
 - data/vendor/local/share/man/man1/groonga.1 +7192 -3297
 - metadata +33 -4
 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>4.10. マイクロブログ検索システムの作成 — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>4.10. マイクロブログ検索システムの作成 — Groonga v5.0.0ドキュメント</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:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.0',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,12 +26,12 @@ 
     | 
|
| 
       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  
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="up" title="4. チュートリアル" href="../tutorial.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="next" title="4.11. クエリ拡張" href="query_expansion.html" />
         
     | 
| 
       32 
32 
     | 
    
         
             
                <link rel="prev" title="4.9. 全文検索用の語彙表の作成" href="lexicon.html" /> 
         
     | 
| 
       33 
33 
     | 
    
         
             
              </head>
         
     | 
| 
       34 
     | 
    
         
            -
              <body>
         
     | 
| 
      
 34 
     | 
    
         
            +
              <body role="document">
         
     | 
| 
       35 
35 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       36 
36 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
       37 
37 
     | 
    
         
             
                <a id="top-link" href="../index.html">
         
     | 
| 
         @@ -49,7 +49,7 @@ 
     | 
|
| 
       49 
49 
     | 
    
         
             
            </div>
         
     | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
51 
     | 
    
         | 
| 
       52 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       53 
53 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       54 
54 
     | 
    
         
             
                  <ul>
         
     | 
| 
       55 
55 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -61,7 +61,7 @@ 
     | 
|
| 
       61 
61 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       62 
62 
     | 
    
         
             
                      <a href="lexicon.html" title="4.9. 全文検索用の語彙表の作成"
         
     | 
| 
       63 
63 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       64 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 64 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
       67 
67 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -69,7 +69,7 @@ 
     | 
|
| 
       69 
69 
     | 
    
         
             
                <div class="document">
         
     | 
| 
       70 
70 
     | 
    
         
             
                  <div class="documentwrapper">
         
     | 
| 
       71 
71 
     | 
    
         
             
                    <div class="bodywrapper">
         
     | 
| 
       72 
     | 
    
         
            -
                      <div class="body">
         
     | 
| 
      
 72 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
              <div class="section" id="let-s-create-micro-blog">
         
     | 
| 
       75 
75 
     | 
    
         
             
            <h1>4.10. マイクロブログ検索システムの作成<a class="headerlink" href="#let-s-create-micro-blog" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
         @@ -113,29 +113,29 @@ column_create --table GeoIndex --name comments_location --type Comments --flags 
     | 
|
| 
       113 
113 
     | 
    
         
             
            <h3>4.10.1.1. Usersテーブル<a class="headerlink" href="#users-table" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       114 
114 
     | 
    
         
             
            <p>ユーザーの名前や自己紹介文、フォローしているユーザー一覧など、ユーザー情報を格納するためのテーブルです。</p>
         
     | 
| 
       115 
115 
     | 
    
         
             
            <dl class="docutils">
         
     | 
| 
       116 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 116 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">_key</span></code></dt>
         
     | 
| 
       117 
117 
     | 
    
         
             
            <dd><p class="first last">ユーザーID</p>
         
     | 
| 
       118 
118 
     | 
    
         
             
            </dd>
         
     | 
| 
       119 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 119 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">name</span></code></dt>
         
     | 
| 
       120 
120 
     | 
    
         
             
            <dd><p class="first last">ユーザー名</p>
         
     | 
| 
       121 
121 
     | 
    
         
             
            </dd>
         
     | 
| 
       122 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 122 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">follower</span></code></dt>
         
     | 
| 
       123 
123 
     | 
    
         
             
            <dd><p class="first last">フォローしているユーザーの一覧</p>
         
     | 
| 
       124 
124 
     | 
    
         
             
            </dd>
         
     | 
| 
       125 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 125 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">favorites</span></code></dt>
         
     | 
| 
       126 
126 
     | 
    
         
             
            <dd><p class="first last">お気に入りのコメント一覧</p>
         
     | 
| 
       127 
127 
     | 
    
         
             
            </dd>
         
     | 
| 
       128 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 128 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">location</span></code></dt>
         
     | 
| 
       129 
129 
     | 
    
         
             
            <dd><p class="first last">ユーザーの現在地(緯度経度座標)</p>
         
     | 
| 
       130 
130 
     | 
    
         
             
            </dd>
         
     | 
| 
       131 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 131 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">location_str</span></code></dt>
         
     | 
| 
       132 
132 
     | 
    
         
             
            <dd><p class="first last">ユーザーの現在地(文字列)</p>
         
     | 
| 
       133 
133 
     | 
    
         
             
            </dd>
         
     | 
| 
       134 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 134 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">description</span></code></dt>
         
     | 
| 
       135 
135 
     | 
    
         
             
            <dd><p class="first last">ユーザーの自己紹介</p>
         
     | 
| 
       136 
136 
     | 
    
         
             
            </dd>
         
     | 
| 
       137 
     | 
    
         
            -
            <dt>< 
     | 
| 
       138 
     | 
    
         
            -
            <dd><p class="first last">< 
     | 
| 
      
 137 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">followee</span></code></dt>
         
     | 
| 
      
 138 
     | 
    
         
            +
            <dd><p class="first last"><code class="docutils literal"><span class="pre">Users</span></code> テーブルの <code class="docutils literal"><span class="pre">follower</span></code> カラムに対するインデックス。 このインデックスを作ることで、あるユーザーをフォローしているユーザーを検索できるようになります。</p>
         
     | 
| 
       139 
139 
     | 
    
         
             
            </dd>
         
     | 
| 
       140 
140 
     | 
    
         
             
            </dl>
         
     | 
| 
       141 
141 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -143,32 +143,32 @@ column_create --table GeoIndex --name comments_location --type Comments --flags 
     | 
|
| 
       143 
143 
     | 
    
         
             
            <h3>4.10.1.2. Commentsテーブル<a class="headerlink" href="#comments-table" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       144 
144 
     | 
    
         
             
            <p>コメント内容や投稿日時、返信先情報など、コメントに関する内容を格納するテーブルです。</p>
         
     | 
| 
       145 
145 
     | 
    
         
             
            <dl class="docutils">
         
     | 
| 
       146 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 146 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">_key</span></code></dt>
         
     | 
| 
       147 
147 
     | 
    
         
             
            <dd><p class="first last">コメントID</p>
         
     | 
| 
       148 
148 
     | 
    
         
             
            </dd>
         
     | 
| 
       149 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 149 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">comment</span></code></dt>
         
     | 
| 
       150 
150 
     | 
    
         
             
            <dd><p class="first last">コメント内容</p>
         
     | 
| 
       151 
151 
     | 
    
         
             
            </dd>
         
     | 
| 
       152 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 152 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">last_modified</span></code></dt>
         
     | 
| 
       153 
153 
     | 
    
         
             
            <dd><p class="first last">投稿日時</p>
         
     | 
| 
       154 
154 
     | 
    
         
             
            </dd>
         
     | 
| 
       155 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 155 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">replied_to</span></code></dt>
         
     | 
| 
       156 
156 
     | 
    
         
             
            <dd><p class="first last">返信元のコメント内容</p>
         
     | 
| 
       157 
157 
     | 
    
         
             
            </dd>
         
     | 
| 
       158 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 158 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">replied_users</span></code></dt>
         
     | 
| 
       159 
159 
     | 
    
         
             
            <dd><p class="first last">返信先のユーザーの一覧</p>
         
     | 
| 
       160 
160 
     | 
    
         
             
            </dd>
         
     | 
| 
       161 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 161 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">hash_tags</span></code></dt>
         
     | 
| 
       162 
162 
     | 
    
         
             
            <dd><p class="first last">コメントのハッシュタグの一覧</p>
         
     | 
| 
       163 
163 
     | 
    
         
             
            </dd>
         
     | 
| 
       164 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 164 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">location</span></code></dt>
         
     | 
| 
       165 
165 
     | 
    
         
             
            <dd><p class="first last">投稿場所(緯度経度座標のため)</p>
         
     | 
| 
       166 
166 
     | 
    
         
             
            </dd>
         
     | 
| 
       167 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 167 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">posted_by</span></code></dt>
         
     | 
| 
       168 
168 
     | 
    
         
             
            <dd><p class="first last">コメントを書いたユーザー</p>
         
     | 
| 
       169 
169 
     | 
    
         
             
            </dd>
         
     | 
| 
       170 
     | 
    
         
            -
            <dt>< 
     | 
| 
       171 
     | 
    
         
            -
            <dd><p class="first last">< 
     | 
| 
      
 170 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">favorited_by</span></code></dt>
         
     | 
| 
      
 171 
     | 
    
         
            +
            <dd><p class="first last"><code class="docutils literal"><span class="pre">Users</span></code> テーブルの <code class="docutils literal"><span class="pre">favorites</span></code> カラムに対するインデックス。 このインデックスを作ることで、指定したコメントを誰がお気に入りに入れているのかを検索できるようになります。</p>
         
     | 
| 
       172 
172 
     | 
    
         
             
            </dd>
         
     | 
| 
       173 
173 
     | 
    
         
             
            </dl>
         
     | 
| 
       174 
174 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -176,10 +176,10 @@ column_create --table GeoIndex --name comments_location --type Comments --flags 
     | 
|
| 
       176 
176 
     | 
    
         
             
            <h3>4.10.1.3. HashTagsテーブル<a class="headerlink" href="#hashtags-table" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       177 
177 
     | 
    
         
             
            <p>コメントのハッシュタグを一覧で保存するためのテーブルです。</p>
         
     | 
| 
       178 
178 
     | 
    
         
             
            <dl class="docutils">
         
     | 
| 
       179 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 179 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">_key</span></code></dt>
         
     | 
| 
       180 
180 
     | 
    
         
             
            <dd><p class="first last">ハッシュタグ</p>
         
     | 
| 
       181 
181 
     | 
    
         
             
            </dd>
         
     | 
| 
       182 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 182 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">hash_index</span></code></dt>
         
     | 
| 
       183 
183 
     | 
    
         
             
            <dd><p class="first last">「Comments.hash_tags」のインデックス。 このインデックスを作ることで、指定したハッシュタグのついているコメントの一覧を出すことが出来るようになります。</p>
         
     | 
| 
       184 
184 
     | 
    
         
             
            </dd>
         
     | 
| 
       185 
185 
     | 
    
         
             
            </dl>
         
     | 
| 
         @@ -188,13 +188,13 @@ column_create --table GeoIndex --name comments_location --type Comments --flags 
     | 
|
| 
       188 
188 
     | 
    
         
             
            <h3>4.10.1.4. Bigramテーブル<a class="headerlink" href="#bigram-table" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       189 
189 
     | 
    
         
             
            <p>ユーザー情報・コメントで全文検索が出来るようにするためのインデックスを格納するテーブルです。</p>
         
     | 
| 
       190 
190 
     | 
    
         
             
            <dl class="docutils">
         
     | 
| 
       191 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 191 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">_key</span></code></dt>
         
     | 
| 
       192 
192 
     | 
    
         
             
            <dd><p class="first last">単語</p>
         
     | 
| 
       193 
193 
     | 
    
         
             
            </dd>
         
     | 
| 
       194 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 194 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">users_index</span></code></dt>
         
     | 
| 
       195 
195 
     | 
    
         
             
            <dd><p class="first last">ユーザー情報のインデックス。 このカラムは、ユーザー名「Users.name」、現在地「Users.location_str」、自己紹介文「Users.description」のインデックスになっています。</p>
         
     | 
| 
       196 
196 
     | 
    
         
             
            </dd>
         
     | 
| 
       197 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 197 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">comment_index</span></code></dt>
         
     | 
| 
       198 
198 
     | 
    
         
             
            <dd><p class="first last">コメント内容「Comments.comment」のインデックス</p>
         
     | 
| 
       199 
199 
     | 
    
         
             
            </dd>
         
     | 
| 
       200 
200 
     | 
    
         
             
            </dl>
         
     | 
| 
         @@ -203,10 +203,10 @@ column_create --table GeoIndex --name comments_location --type Comments --flags 
     | 
|
| 
       203 
203 
     | 
    
         
             
            <h3>4.10.1.5. GeoIndexテーブル<a class="headerlink" href="#geoindex-table" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       204 
204 
     | 
    
         
             
            <p>位置情報検索を効果的に行うための locationカラムのインデックスを保持するテーブルです。</p>
         
     | 
| 
       205 
205 
     | 
    
         
             
            <dl class="docutils">
         
     | 
| 
       206 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 206 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">users_location</span></code></dt>
         
     | 
| 
       207 
207 
     | 
    
         
             
            <dd><p class="first last">Usersテーブルのlocationカラムに対するインデックス</p>
         
     | 
| 
       208 
208 
     | 
    
         
             
            </dd>
         
     | 
| 
       209 
     | 
    
         
            -
            <dt>< 
     | 
| 
      
 209 
     | 
    
         
            +
            <dt><code class="docutils literal"><span class="pre">comments_location</span></code></dt>
         
     | 
| 
       210 
210 
     | 
    
         
             
            <dd><p class="first last">Commentsテーブルのlocationカラムに対するインデックス</p>
         
     | 
| 
       211 
211 
     | 
    
         
             
            </dd>
         
     | 
| 
       212 
212 
     | 
    
         
             
            </dl>
         
     | 
| 
         @@ -310,9 +310,9 @@ load --table Comments 
     | 
|
| 
       310 
310 
     | 
    
         
             
            ]
         
     | 
| 
       311 
311 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       312 
312 
     | 
    
         
             
            </div>
         
     | 
| 
       313 
     | 
    
         
            -
            <p>< 
     | 
| 
       314 
     | 
    
         
            -
            <p>< 
     | 
| 
       315 
     | 
    
         
            -
            <p>< 
     | 
| 
      
 313 
     | 
    
         
            +
            <p><code class="docutils literal"><span class="pre">Users</span></code> テーブルの <code class="docutils literal"><span class="pre">follower</span></code> カラムと <code class="docutils literal"><span class="pre">favorites</span></code> カラム、そして <code class="docutils literal"><span class="pre">Comments</span></code> テーブルの <code class="docutils literal"><span class="pre">replied_users</span></code> カラムは、ベクターカラムです。そのため、これらのカラムは配列で値を指定します。</p>
         
     | 
| 
      
 314 
     | 
    
         
            +
            <p><code class="docutils literal"><span class="pre">Users</span></code> テーブルの <code class="docutils literal"><span class="pre">location</span></code> カラムと、<code class="docutils literal"><span class="pre">Comments</span></code> テーブルの <code class="docutils literal"><span class="pre">location</span></code> カラムは、 <code class="docutils literal"><span class="pre">GeoPoint</span></code> 型です。この型での値の指定は、"[緯度]x[経度]"と記述して指定します。</p>
         
     | 
| 
      
 315 
     | 
    
         
            +
            <p><code class="docutils literal"><span class="pre">Comments</span></code> テーブルの <code class="docutils literal"><span class="pre">last_modified</span></code> カラムは、Time型です。</p>
         
     | 
| 
       316 
316 
     | 
    
         
             
            <p>この型での値を指定する方法は2つあります。1つ目の方法は、1970年1月1日0時0分0秒からの経過秒数の値を直接指定する方法です。このとき、小数部分を指定することでマイクロ秒数での指定が可能です。指定した値は、データのロードの際にマイクロ秒を単位とする整数値に変換後、格納されます。 2つ目の方法は、文字列で日時と時刻を指定する方法です。"年/月/日 時:分:秒"というフォーマットで記述することで、データロードの際に文字列からキャストされ、マイクロ秒数の値が格納されます。</p>
         
     | 
| 
       317 
317 
     | 
    
         
             
            </div>
         
     | 
| 
       318 
318 
     | 
    
         
             
            <div class="section" id="search">
         
     | 
| 
         @@ -428,7 +428,7 @@ load --table Comments 
     | 
|
| 
       428 
428 
     | 
    
         
             
            <div class="section" id="search-users-who-follows-specific-user">
         
     | 
| 
       429 
429 
     | 
    
         
             
            <h3>4.10.3.3. あるユーザーをフォローしてるユーザーの検索<a class="headerlink" href="#search-users-who-follows-specific-user" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       430 
430 
     | 
    
         
             
            <p>ここでは、 <a class="reference internal" href="index.html"><em>タグ検索・参照関係の逆引き</em></a> の参照関係の逆引きをします。</p>
         
     | 
| 
       431 
     | 
    
         
            -
            <p>次の例は、 < 
     | 
| 
      
 431 
     | 
    
         
            +
            <p>次の例は、 <code class="docutils literal"><span class="pre">Users</span></code> テーブルの <code class="docutils literal"><span class="pre">follower</span></code> カラムにあるフォローリストを逆引きします。</p>
         
     | 
| 
       432 
432 
     | 
    
         
             
            <p>実行例:</p>
         
     | 
| 
       433 
433 
     | 
    
         
             
            <div class="highlight-none"><div class="highlight"><pre>select --table Users --query follower:@bob --output_columns _key,name
         
     | 
| 
       434 
434 
     | 
    
         
             
            # [
         
     | 
| 
         @@ -963,7 +963,7 @@ load --table Comments 
     | 
|
| 
       963 
963 
     | 
    
         
             
                      </div>
         
     | 
| 
       964 
964 
     | 
    
         
             
                    </div>
         
     | 
| 
       965 
965 
     | 
    
         
             
                  </div>
         
     | 
| 
       966 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 966 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       967 
967 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       968 
968 
     | 
    
         
             
              <h3><a href="../index.html">目次</a></h3>
         
     | 
| 
       969 
969 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -1000,12 +1000,14 @@ load --table Comments 
     | 
|
| 
       1000 
1000 
     | 
    
         
             
              <h4>次のトピックへ</h4>
         
     | 
| 
       1001 
1001 
     | 
    
         
             
              <p class="topless"><a href="query_expansion.html"
         
     | 
| 
       1002 
1002 
     | 
    
         
             
                                    title="次の章へ">4.11. クエリ拡張</a></p>
         
     | 
| 
       1003 
     | 
    
         
            -
              < 
     | 
| 
       1004 
     | 
    
         
            -
             
     | 
| 
       1005 
     | 
    
         
            -
                < 
     | 
| 
       1006 
     | 
    
         
            -
             
     | 
| 
       1007 
     | 
    
         
            -
             
     | 
| 
       1008 
     | 
    
         
            -
             
     | 
| 
      
 1003 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 1004 
     | 
    
         
            +
                <h3>このページ</h3>
         
     | 
| 
      
 1005 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  <li><a href="../_sources/tutorial/micro_blog.txt"
         
     | 
| 
      
 1007 
     | 
    
         
            +
                        rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 1008 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 1009 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 1010 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       1009 
1011 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       1010 
1012 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       1011 
1013 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -1022,7 +1024,7 @@ load --table Comments 
     | 
|
| 
       1022 
1024 
     | 
    
         
             
                  </div>
         
     | 
| 
       1023 
1025 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       1024 
1026 
     | 
    
         
             
                </div>
         
     | 
| 
       1025 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 1027 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       1026 
1028 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       1027 
1029 
     | 
    
         
             
                  <ul>
         
     | 
| 
       1028 
1030 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -1034,12 +1036,12 @@ load --table Comments 
     | 
|
| 
       1034 
1036 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       1035 
1037 
     | 
    
         
             
                      <a href="lexicon.html" title="4.9. 全文検索用の語彙表の作成"
         
     | 
| 
       1036 
1038 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       1037 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 1039 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       1038 
1040 
     | 
    
         
             
                      <li><a href="../tutorial.html" >4. チュートリアル</a> »</li> 
         
     | 
| 
       1039 
1041 
     | 
    
         
             
                  </ul>
         
     | 
| 
       1040 
1042 
     | 
    
         
             
                </div>
         
     | 
| 
       1041 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       1042 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 1043 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 1044 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       1043 
1045 
     | 
    
         
             
                </div>
         
     | 
| 
       1044 
1046 
     | 
    
         
             
              </body>
         
     | 
| 
       1045 
1047 
     | 
    
         
             
            </html>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>4.2. リモートアクセス — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>4.2. リモートアクセス — Groonga v5.0.0ドキュメント</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:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.0',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,12 +26,12 @@ 
     | 
|
| 
       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  
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="up" title="4. チュートリアル" href="../tutorial.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="next" title="4.3. いろいろなデータの保存" href="data.html" />
         
     | 
| 
       32 
32 
     | 
    
         
             
                <link rel="prev" title="4.1. 基本的な操作" href="introduction.html" /> 
         
     | 
| 
       33 
33 
     | 
    
         
             
              </head>
         
     | 
| 
       34 
     | 
    
         
            -
              <body>
         
     | 
| 
      
 34 
     | 
    
         
            +
              <body role="document">
         
     | 
| 
       35 
35 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       36 
36 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
       37 
37 
     | 
    
         
             
                <a id="top-link" href="../index.html">
         
     | 
| 
         @@ -49,7 +49,7 @@ 
     | 
|
| 
       49 
49 
     | 
    
         
             
            </div>
         
     | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
51 
     | 
    
         | 
| 
       52 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       53 
53 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       54 
54 
     | 
    
         
             
                  <ul>
         
     | 
| 
       55 
55 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -61,7 +61,7 @@ 
     | 
|
| 
       61 
61 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       62 
62 
     | 
    
         
             
                      <a href="introduction.html" title="4.1. 基本的な操作"
         
     | 
| 
       63 
63 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       64 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 64 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
       67 
67 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -69,7 +69,7 @@ 
     | 
|
| 
       69 
69 
     | 
    
         
             
                <div class="document">
         
     | 
| 
       70 
70 
     | 
    
         
             
                  <div class="documentwrapper">
         
     | 
| 
       71 
71 
     | 
    
         
             
                    <div class="bodywrapper">
         
     | 
| 
       72 
     | 
    
         
            -
                      <div class="body">
         
     | 
| 
      
 72 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
              <div class="section" id="remote-access">
         
     | 
| 
       75 
75 
     | 
    
         
             
            <h1>4.2. リモートアクセス<a class="headerlink" href="#remote-access" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
         @@ -179,7 +179,7 @@ status 
     | 
|
| 
       179 
179 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       180 
180 
     | 
    
         
             
            </div>
         
     | 
| 
       181 
181 
     | 
    
         
             
            <div class="admonition note">
         
     | 
| 
       182 
     | 
    
         
            -
            <p class="first admonition-title" 
     | 
| 
      
 182 
     | 
    
         
            +
            <p class="first admonition-title">注釈</p>
         
     | 
| 
       183 
183 
     | 
    
         
             
            <p class="last">80番ポートで待ち受けるにはroot権限が必須です。1024番以降のポート番号にはそのような制限はありません。</p>
         
     | 
| 
       184 
184 
     | 
    
         
             
            </div>
         
     | 
| 
       185 
185 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -292,7 +292,7 @@ select --table Site --query title:@this 
     | 
|
| 
       292 
292 
     | 
    
         
             
                      </div>
         
     | 
| 
       293 
293 
     | 
    
         
             
                    </div>
         
     | 
| 
       294 
294 
     | 
    
         
             
                  </div>
         
     | 
| 
       295 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 295 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       296 
296 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       297 
297 
     | 
    
         
             
              <h3><a href="../index.html">目次</a></h3>
         
     | 
| 
       298 
298 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -322,12 +322,14 @@ select --table Site --query title:@this 
     | 
|
| 
       322 
322 
     | 
    
         
             
              <h4>次のトピックへ</h4>
         
     | 
| 
       323 
323 
     | 
    
         
             
              <p class="topless"><a href="data.html"
         
     | 
| 
       324 
324 
     | 
    
         
             
                                    title="次の章へ">4.3. いろいろなデータの保存</a></p>
         
     | 
| 
       325 
     | 
    
         
            -
              < 
     | 
| 
       326 
     | 
    
         
            -
             
     | 
| 
       327 
     | 
    
         
            -
                < 
     | 
| 
       328 
     | 
    
         
            -
             
     | 
| 
       329 
     | 
    
         
            -
             
     | 
| 
       330 
     | 
    
         
            -
             
     | 
| 
      
 325 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 326 
     | 
    
         
            +
                <h3>このページ</h3>
         
     | 
| 
      
 327 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 328 
     | 
    
         
            +
                  <li><a href="../_sources/tutorial/network.txt"
         
     | 
| 
      
 329 
     | 
    
         
            +
                        rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 330 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 331 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 332 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       331 
333 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       332 
334 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       333 
335 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -344,7 +346,7 @@ select --table Site --query title:@this 
     | 
|
| 
       344 
346 
     | 
    
         
             
                  </div>
         
     | 
| 
       345 
347 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       346 
348 
     | 
    
         
             
                </div>
         
     | 
| 
       347 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 349 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       348 
350 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       349 
351 
     | 
    
         
             
                  <ul>
         
     | 
| 
       350 
352 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -356,12 +358,12 @@ select --table Site --query title:@this 
     | 
|
| 
       356 
358 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       357 
359 
     | 
    
         
             
                      <a href="introduction.html" title="4.1. 基本的な操作"
         
     | 
| 
       358 
360 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       359 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 361 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       360 
362 
     | 
    
         
             
                      <li><a href="../tutorial.html" >4. チュートリアル</a> »</li> 
         
     | 
| 
       361 
363 
     | 
    
         
             
                  </ul>
         
     | 
| 
       362 
364 
     | 
    
         
             
                </div>
         
     | 
| 
       363 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       364 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 365 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 366 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       365 
367 
     | 
    
         
             
                </div>
         
     | 
| 
       366 
368 
     | 
    
         
             
              </body>
         
     | 
| 
       367 
369 
     | 
    
         
             
            </html>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>4.8. パトリシア木による前方一致検索 — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>4.8. パトリシア木による前方一致検索 — Groonga v5.0.0ドキュメント</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:     ' 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.0',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,12 +26,12 @@ 
     | 
|
| 
       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  
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="up" title="4. チュートリアル" href="../tutorial.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="next" title="4.9. 全文検索用の語彙表の作成" href="lexicon.html" />
         
     | 
| 
       32 
32 
     | 
    
         
             
                <link rel="prev" title="4.7. match_columnsパラメータ" href="match_columns.html" /> 
         
     | 
| 
       33 
33 
     | 
    
         
             
              </head>
         
     | 
| 
       34 
     | 
    
         
            -
              <body>
         
     | 
| 
      
 34 
     | 
    
         
            +
              <body role="document">
         
     | 
| 
       35 
35 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       36 
36 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
       37 
37 
     | 
    
         
             
                <a id="top-link" href="../index.html">
         
     | 
| 
         @@ -49,7 +49,7 @@ 
     | 
|
| 
       49 
49 
     | 
    
         
             
            </div>
         
     | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
51 
     | 
    
         | 
| 
       52 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 52 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       53 
53 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       54 
54 
     | 
    
         
             
                  <ul>
         
     | 
| 
       55 
55 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -61,7 +61,7 @@ 
     | 
|
| 
       61 
61 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       62 
62 
     | 
    
         
             
                      <a href="match_columns.html" title="4.7. match_columnsパラメータ"
         
     | 
| 
       63 
63 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       64 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 64 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
       67 
67 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -69,7 +69,7 @@ 
     | 
|
| 
       69 
69 
     | 
    
         
             
                <div class="document">
         
     | 
| 
       70 
70 
     | 
    
         
             
                  <div class="documentwrapper">
         
     | 
| 
       71 
71 
     | 
    
         
             
                    <div class="bodywrapper">
         
     | 
| 
       72 
     | 
    
         
            -
                      <div class="body">
         
     | 
| 
      
 72 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
              <div class="section" id="prefix-search-with-patricia-trie">
         
     | 
| 
       75 
75 
     | 
    
         
             
            <h1>4.8. パトリシア木による前方一致検索<a class="headerlink" href="#prefix-search-with-patricia-trie" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
         @@ -131,7 +131,7 @@ select --table PatPrefix --query _key:^Je 
     | 
|
| 
       131 
131 
     | 
    
         
             
            <h2>4.8.2. 主キーによる後方一致検索<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       132 
132 
     | 
    
         
             
            <p>table_createコマンドのflagsオプションにTABLE_PAT_KEYとKEY_WITH_SISを指定することで、主キーによる前方一致検索・後方一致検索の両方が可能となります。</p>
         
     | 
| 
       133 
133 
     | 
    
         
             
            <p>KEY_WITH_SISフラグを付与すると、データを追加する際に後方一致用のレコードも追加されてしまいます。そのため、単純に検索すると、元のレコードに加えて自動的に追加されたレコードまでヒットしてしまいます。元のレコードのみ検索するために、一工夫必要になります。</p>
         
     | 
| 
       134 
     | 
    
         
            -
            <p>例えば、元のレコードと自動的に追加されたレコードとの区別をつけるために、元のレコードであることを示すoriginalカラムを追加して、検索時にはoriginalカラムが < 
     | 
| 
      
 134 
     | 
    
         
            +
            <p>例えば、元のレコードと自動的に追加されたレコードとの区別をつけるために、元のレコードであることを示すoriginalカラムを追加して、検索時にはoriginalカラムが <code class="docutils literal"><span class="pre">true</span></code> も検索条件に加えます。 <code class="docutils literal"><span class="pre">--query</span></code> オプションでは <code class="docutils literal"><span class="pre">Bool</span></code> 型の値を直感的に指定することができないので <code class="docutils literal"><span class="pre">--filter</span></code> オプションを使っていることに注意してください。</p>
         
     | 
| 
       135 
135 
     | 
    
         
             
            <p>実行例:</p>
         
     | 
| 
       136 
136 
     | 
    
         
             
            <div class="highlight-none"><div class="highlight"><pre>table_create --name PatSuffix --flags TABLE_PAT_KEY|KEY_WITH_SIS --key_type ShortText
         
     | 
| 
       137 
137 
     | 
    
         
             
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
         @@ -242,7 +242,7 @@ select --table PatSuffix --filter '_key @$ "ゆき" && ori 
     | 
|
| 
       242 
242 
     | 
    
         
             
                      </div>
         
     | 
| 
       243 
243 
     | 
    
         
             
                    </div>
         
     | 
| 
       244 
244 
     | 
    
         
             
                  </div>
         
     | 
| 
       245 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 245 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       246 
246 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       247 
247 
     | 
    
         
             
              <h3><a href="../index.html">目次</a></h3>
         
     | 
| 
       248 
248 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -259,12 +259,14 @@ select --table PatSuffix --filter '_key @$ "ゆき" && ori 
     | 
|
| 
       259 
259 
     | 
    
         
             
              <h4>次のトピックへ</h4>
         
     | 
| 
       260 
260 
     | 
    
         
             
              <p class="topless"><a href="lexicon.html"
         
     | 
| 
       261 
261 
     | 
    
         
             
                                    title="次の章へ">4.9. 全文検索用の語彙表の作成</a></p>
         
     | 
| 
       262 
     | 
    
         
            -
              < 
     | 
| 
       263 
     | 
    
         
            -
             
     | 
| 
       264 
     | 
    
         
            -
                < 
     | 
| 
       265 
     | 
    
         
            -
             
     | 
| 
       266 
     | 
    
         
            -
             
     | 
| 
       267 
     | 
    
         
            -
             
     | 
| 
      
 262 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 263 
     | 
    
         
            +
                <h3>このページ</h3>
         
     | 
| 
      
 264 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 265 
     | 
    
         
            +
                  <li><a href="../_sources/tutorial/patricia_trie.txt"
         
     | 
| 
      
 266 
     | 
    
         
            +
                        rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 267 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 268 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 269 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       268 
270 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       269 
271 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       270 
272 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -281,7 +283,7 @@ select --table PatSuffix --filter '_key @$ "ゆき" && ori 
     | 
|
| 
       281 
283 
     | 
    
         
             
                  </div>
         
     | 
| 
       282 
284 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       283 
285 
     | 
    
         
             
                </div>
         
     | 
| 
       284 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 286 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       285 
287 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       286 
288 
     | 
    
         
             
                  <ul>
         
     | 
| 
       287 
289 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -293,12 +295,12 @@ select --table PatSuffix --filter '_key @$ "ゆき" && ori 
     | 
|
| 
       293 
295 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       294 
296 
     | 
    
         
             
                      <a href="match_columns.html" title="4.7. match_columnsパラメータ"
         
     | 
| 
       295 
297 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       296 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 298 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> »</li>
         
     | 
| 
       297 
299 
     | 
    
         
             
                      <li><a href="../tutorial.html" >4. チュートリアル</a> »</li> 
         
     | 
| 
       298 
300 
     | 
    
         
             
                  </ul>
         
     | 
| 
       299 
301 
     | 
    
         
             
                </div>
         
     | 
| 
       300 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       301 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 302 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 303 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       302 
304 
     | 
    
         
             
                </div>
         
     | 
| 
       303 
305 
     | 
    
         
             
              </body>
         
     | 
| 
       304 
306 
     | 
    
         
             
            </html>
         
     |