rroonga 0.9.5-x86-mingw32 → 1.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/NEWS.ja.rdoc +24 -0
 - data/NEWS.rdoc +24 -0
 - data/README.ja.rdoc +3 -2
 - data/README.rdoc +3 -2
 - data/Rakefile +15 -6
 - data/ext/groonga/extconf.rb +25 -25
 - data/ext/groonga/groonga.def +2 -0
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-exception.c +14 -0
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +13 -1
 - data/ext/groonga/rb-grn-object.c +2 -2
 - data/ext/groonga/rb-grn-patricia-trie.c +394 -1
 - data/ext/groonga/rb-grn-table.c +33 -2
 - data/ext/groonga/rb-grn.h +3 -3
 - data/html/index.html +1 -1
 - data/lib/1.8/groonga.so +0 -0
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/groonga/record.rb +32 -2
 - data/lib/groonga/schema.rb +1 -1
 - data/rroonga-build.rb +3 -3
 - data/test/test-patricia-trie.rb +172 -1
 - data/test/test-record.rb +7 -0
 - data/test/test-remote.rb +2 -1
 - data/test/test-table-cursor.rb +35 -1
 - data/test/test-table-select-normalize.rb +7 -3
 - data/vendor/local/bin/grntest.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/etc/groonga/groonga.conf +11 -0
 - data/vendor/local/etc/groonga/init.d/redhat/groonga +168 -0
 - data/vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga +8 -0
 - data/vendor/local/include/groonga/groonga.h +38 -12
 - data/vendor/local/lib/groonga/modules/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/modules/{functions/cast.la → suggest/suggest.la} +6 -6
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +1 -1
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/admin_html/js/jquery.json-2.2.min.js +31 -0
 - data/vendor/local/share/groonga/doc/ja/html/.buildinfo +4 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt +79 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/basic.css +509 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/default.css +277 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/doctools.js +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/jquery.js +6240 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/pygments.css +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/searchtools.js +518 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/sidebar.js +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/underscore.js +16 -0
 - data/vendor/local/share/groonga/doc/ja/html/characteristic.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/check.html +285 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/clearlock.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_create.html +210 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_list.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_remove.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/define_selector.html +221 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/defrag.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/delete.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/dump.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/load.html +208 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_level.html +187 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_put.html +190 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html +188 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/quit.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/select.html +331 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/shutdown.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/status.html +179 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/suggest.html +191 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_create.html +222 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_list.html +202 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_remove.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/view_add.html +175 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html +161 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer.html +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/com.html +136 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/document.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/query.html +336 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/test.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/execfile.html +370 -0
 - data/vendor/local/share/groonga/doc/ja/html/expr.html +157 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions.html +122 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html +170 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/now.html +152 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/rand.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/genindex.html +227 -0
 - data/vendor/local/share/groonga/doc/ja/html/grnslap.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/grntest.html +368 -0
 - data/vendor/local/share/groonga/doc/ja/html/http.html +163 -0
 - data/vendor/local/share/groonga/doc/ja/html/index.html +291 -0
 - data/vendor/local/share/groonga/doc/ja/html/install.html +228 -0
 - data/vendor/local/share/groonga/doc/ja/html/news.html +310 -0
 - data/vendor/local/share/groonga/doc/ja/html/objects.inv +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/process.html +120 -0
 - data/vendor/local/share/groonga/doc/ja/html/pseudo_column.html +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/reference.html +174 -0
 - data/vendor/local/share/groonga/doc/ja/html/search.html +96 -0
 - data/vendor/local/share/groonga/doc/ja/html/searchindex.js +1 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html +388 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html +214 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html +169 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html +209 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html +458 -0
 - data/vendor/local/share/groonga/doc/ja/html/type.html +217 -0
 - data/vendor/local/share/groonga/doc/ja/source/__init__.py +0 -0
 - data/vendor/local/share/groonga/doc/ja/source/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/source/conf.py +265 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log +16 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log +8 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log +13 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log +24 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log +25 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log +22 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log +20 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/source/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/source/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/source/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/source/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/source/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/rdoc.py +762 -0
 - data/vendor/local/share/groonga/doc/ja/source/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/source/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/source/update_execution_example.py +113 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +61 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css +3 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/index.html +26 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js +51 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.4.2.min.js +154 -0
 - data/vendor/local/share/groonga/examples/dictionary/init_db.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +42 -0
 - data/vendor/local/share/groonga/examples/dictionary/readme.txt +71 -0
 - data/vendor/local/share/man/man1/groonga.1 +5498 -0
 - metadata +360 -118
 - data/pkg-config.rb +0 -333
 - data/pkg/rroonga-0.9.5/NEWS.ja.rdoc +0 -156
 - data/pkg/rroonga-0.9.5/NEWS.rdoc +0 -158
 - data/pkg/rroonga-0.9.5/README.ja.rdoc +0 -65
 - data/pkg/rroonga-0.9.5/README.rdoc +0 -66
 - data/pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc +0 -394
 - data/pkg/rroonga-0.9.5/text/expression.rdoc +0 -285
 - data/test-unit/Rakefile +0 -40
 - data/test-unit/TODO +0 -5
 - data/test-unit/bin/testrb +0 -5
 - data/test-unit/html/classic.html +0 -15
 - data/test-unit/html/index.html +0 -25
 - data/test-unit/html/index.html.ja +0 -27
 - data/test-unit/lib/test/unit.rb +0 -323
 - data/test-unit/lib/test/unit/assertionfailederror.rb +0 -25
 - data/test-unit/lib/test/unit/assertions.rb +0 -1230
 - data/test-unit/lib/test/unit/attribute.rb +0 -125
 - data/test-unit/lib/test/unit/autorunner.rb +0 -360
 - data/test-unit/lib/test/unit/collector.rb +0 -36
 - data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
 - data/test-unit/lib/test/unit/collector/dir.rb +0 -108
 - data/test-unit/lib/test/unit/collector/load.rb +0 -144
 - data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
 - data/test-unit/lib/test/unit/color-scheme.rb +0 -102
 - data/test-unit/lib/test/unit/color.rb +0 -96
 - data/test-unit/lib/test/unit/diff.rb +0 -724
 - data/test-unit/lib/test/unit/error.rb +0 -130
 - data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
 - data/test-unit/lib/test/unit/failure.rb +0 -136
 - data/test-unit/lib/test/unit/fixture.rb +0 -176
 - data/test-unit/lib/test/unit/notification.rb +0 -129
 - data/test-unit/lib/test/unit/omission.rb +0 -191
 - data/test-unit/lib/test/unit/pending.rb +0 -150
 - data/test-unit/lib/test/unit/priority.rb +0 -180
 - data/test-unit/lib/test/unit/runner/console.rb +0 -52
 - data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
 - data/test-unit/lib/test/unit/runner/tap.rb +0 -8
 - data/test-unit/lib/test/unit/testcase.rb +0 -476
 - data/test-unit/lib/test/unit/testresult.rb +0 -89
 - data/test-unit/lib/test/unit/testsuite.rb +0 -110
 - data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
 - data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -466
 - data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -63
 - data/test-unit/lib/test/unit/ui/tap/testrunner.rb +0 -92
 - data/test-unit/lib/test/unit/ui/testrunner.rb +0 -28
 - data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
 - data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
 - data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
 - data/test-unit/lib/test/unit/util/method-owner-finder.rb +0 -28
 - data/test-unit/lib/test/unit/util/observable.rb +0 -90
 - data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
 - data/test-unit/lib/test/unit/version.rb +0 -7
 - data/test-unit/sample/adder.rb +0 -13
 - data/test-unit/sample/subtracter.rb +0 -12
 - data/test-unit/sample/test_adder.rb +0 -20
 - data/test-unit/sample/test_subtracter.rb +0 -20
 - data/test-unit/sample/test_user.rb +0 -23
 - data/test-unit/test/collector/test-descendant.rb +0 -133
 - data/test-unit/test/collector/test-load.rb +0 -442
 - data/test-unit/test/collector/test_dir.rb +0 -406
 - data/test-unit/test/collector/test_objectspace.rb +0 -100
 - data/test-unit/test/run-test.rb +0 -15
 - data/test-unit/test/test-attribute.rb +0 -86
 - data/test-unit/test/test-color-scheme.rb +0 -67
 - data/test-unit/test/test-color.rb +0 -47
 - data/test-unit/test/test-diff.rb +0 -518
 - data/test-unit/test/test-emacs-runner.rb +0 -60
 - data/test-unit/test/test-fixture.rb +0 -287
 - data/test-unit/test/test-notification.rb +0 -33
 - data/test-unit/test/test-omission.rb +0 -81
 - data/test-unit/test/test-pending.rb +0 -70
 - data/test-unit/test/test-priority.rb +0 -119
 - data/test-unit/test/test-testcase.rb +0 -544
 - data/test-unit/test/test_assertions.rb +0 -1151
 - data/test-unit/test/test_error.rb +0 -26
 - data/test-unit/test/test_failure.rb +0 -33
 - data/test-unit/test/test_testresult.rb +0 -113
 - data/test-unit/test/test_testsuite.rb +0 -129
 - data/test-unit/test/testunit-test-util.rb +0 -14
 - data/test-unit/test/ui/test_testrunmediator.rb +0 -20
 - data/test-unit/test/util/test-method-owner-finder.rb +0 -38
 - data/test-unit/test/util/test_backtracefilter.rb +0 -41
 - data/test-unit/test/util/test_observable.rb +0 -102
 - data/test-unit/test/util/test_procwrapper.rb +0 -36
 - data/vendor/local/lib/groonga/modules/functions/cast.dll +0 -0
 
| 
         @@ -0,0 +1,310 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>お知らせ — groonga v1.0.2 documentation</title>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/default.css" type="text/css" />
         
     | 
| 
      
 12 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
      
 13 
     | 
    
         
            +
                <script type="text/javascript">
         
     | 
| 
      
 14 
     | 
    
         
            +
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
      
 15 
     | 
    
         
            +
                    URL_ROOT:    '',
         
     | 
| 
      
 16 
     | 
    
         
            +
                    VERSION:     '1.0.2',
         
     | 
| 
      
 17 
     | 
    
         
            +
                    COLLAPSE_INDEX: false,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    FILE_SUFFIX: '.html',
         
     | 
| 
      
 19 
     | 
    
         
            +
                    HAS_SOURCE:  true
         
     | 
| 
      
 20 
     | 
    
         
            +
                  };
         
     | 
| 
      
 21 
     | 
    
         
            +
                </script>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <script type="text/javascript" src="_static/jquery.js"></script>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <script type="text/javascript" src="_static/underscore.js"></script>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <link rel="top" title="groonga v1.0.2 documentation" href="index.html" /> 
         
     | 
| 
      
 26 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 27 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 29 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 31 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 32 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 33 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 34 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li> 
         
     | 
| 
      
 35 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 36 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 39 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 41 
     | 
    
         
            +
                      <div class="body">
         
     | 
| 
      
 42 
     | 
    
         
            +
                        
         
     | 
| 
      
 43 
     | 
    
         
            +
              <div class="section" id="id1">
         
     | 
| 
      
 44 
     | 
    
         
            +
            <h1>お知らせ<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 45 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 46 
     | 
    
         
            +
            <h2>1.0.2リリース - 2010/09/09<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 47 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 48 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 49 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 50 
     | 
    
         
            +
            <li><a class="reference internal" href="commands/suggest.html#suggest"><em>suggest</em></a> コマンドのサンプルを追加。(examples/dictionary/)</li>
         
     | 
| 
      
 51 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 52 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 53 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 54 
     | 
    
         
            +
            <h3>変更<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 55 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 56 
     | 
    
         
            +
            <li>HTTPで公開するディレクトリを指定する–admin-html-pathを–document-rootに変更。</li>
         
     | 
| 
      
 57 
     | 
    
         
            +
            <li><a class="reference internal" href="commands/select.html#select"><em>select</em></a> コマンドのデフォルトの–output_columnsから_valueを削除。</li>
         
     | 
| 
      
 58 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 59 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 60 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 61 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 62 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 63 
     | 
    
         
            +
            <li>パッケージミスを修正。 (OBATA Akioさんが報告)</li>
         
     | 
| 
      
 64 
     | 
    
         
            +
            <li>GeoPointの度表記の解釈を修正。 #460</li>
         
     | 
| 
      
 65 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 66 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 68 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 70 
     | 
    
         
            +
            <li>OBATA Akioさん</li>
         
     | 
| 
      
 71 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 72 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 73 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 75 
     | 
    
         
            +
            <h2>1.0.1リリース - 2010/09/06<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 77 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li>CentOS 5/Fedora 13用RPMの提供。(Daiki Uenoさん作成のspecがベース)</li>
         
     | 
| 
      
 80 
     | 
    
         
            +
            <li>ログパスのデフォルト値に–localstatedirを使用。(OBATA Akioさんが提案)</li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li>BOM付きUTF-8に対応。</li>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 83 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 84 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 85 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 86 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 87 
     | 
    
         
            +
            <li>JSON JQueryプラグインが同梱されていない問題の修正。</li>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <li>テストが失敗する問題の修正。(OBATA Akioさんが報告)</li>
         
     | 
| 
      
 89 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 90 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 92 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 94 
     | 
    
         
            +
            <li>Daiki Uenoさん</li>
         
     | 
| 
      
 95 
     | 
    
         
            +
            <li>OBATA Akioさん</li>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 97 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 98 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 100 
     | 
    
         
            +
            <h2>1.0.0リリース - 2010/08/29<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 102 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 103 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 104 
     | 
    
         
            +
            <li>指定したクエリに対する補完・修正・提案を行う <a class="reference internal" href="commands/suggest.html#suggest"><em>suggest</em></a> コマンドを追加。</li>
         
     | 
| 
      
 105 
     | 
    
         
            +
            <li><em class="xref std std-ref">deelte</em> コマンドが失敗したらfalseを返すように変更。(Itagaki Takahiroさんが提案)</li>
         
     | 
| 
      
 106 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 108 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 109 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 111 
     | 
    
         
            +
            <li>関数もコマンドとして呼び出してしまう問題を修正。#431</li>
         
     | 
| 
      
 112 
     | 
    
         
            +
            <li>索引付きカラムを等価条件で検索できない問題を修正。</li>
         
     | 
| 
      
 113 
     | 
    
         
            +
            <li><a class="reference internal" href="commands/delete.html#delete"><em>delete</em></a> コマンドでキーがShortText以外のレコードを削除できない問題の修正。(Itagaki Takahiroさんが報告)</li>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 115 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 116 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 117 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 118 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 119 
     | 
    
         
            +
            <li>Itagaki Takahiroさん</li>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 121 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 122 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 123 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 124 
     | 
    
         
            +
            <h2>0.7.7リリース - 2010/08/25<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 125 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 126 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 127 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 128 
     | 
    
         
            +
            <li>編集距離(レーベンシュタイン距離)を計算する
         
     | 
| 
      
 129 
     | 
    
         
            +
            <a class="reference internal" href="functions/edit_distance.html#edit-distance"><em>edit_distance</em></a> ()関数の追加。</li>
         
     | 
| 
      
 130 
     | 
    
         
            +
            <li>manを追加。</li>
         
     | 
| 
      
 131 
     | 
    
         
            +
            <li><a class="reference internal" href="commands/delete.html#delete"><em>delete</em></a> コマンドでデータの整合性が壊れる場合はエラー
         
     | 
| 
      
 132 
     | 
    
         
            +
            を返すようにした。</li>
         
     | 
| 
      
 133 
     | 
    
         
            +
            <li>MeCabの辞書のエンコーディング検出処理を改善。</li>
         
     | 
| 
      
 134 
     | 
    
         
            +
            <li>デフォルトの設定ファイルを追加。</li>
         
     | 
| 
      
 135 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 136 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 137 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 138 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 139 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 140 
     | 
    
         
            +
            <li><a class="reference internal" href="functions/geo_in_rectangle.html#geo-in-rectangle"><em>geo_in_rectangle</em></a> ()関数が引数を「左上」と「右下」で
         
     | 
| 
      
 141 
     | 
    
         
            +
            はなく、「左下」と「右上」と扱っていた問題を修正。</li>
         
     | 
| 
      
 142 
     | 
    
         
            +
            <li>前方一致検索がマッチしない問題を修正。</li>
         
     | 
| 
      
 143 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 144 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 145 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 146 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 147 
     | 
    
         
            +
            <h2>0.7.6リリース - 2010/08/19<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 148 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 149 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 150 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 151 
     | 
    
         
            +
            <li>デーモンになるときは標準出力を閉じるようにした。</li>
         
     | 
| 
      
 152 
     | 
    
         
            +
            <li>PIDファイルを指定する``–pid-path``オプションを追加。</li>
         
     | 
| 
      
 153 
     | 
    
         
            +
            <li>設定ファイルを指定する``–config-path``オプションを追加。</li>
         
     | 
| 
      
 154 
     | 
    
         
            +
            <li>最大キャッシュ数を指定する``–cache-limit``オプションを追加。</li>
         
     | 
| 
      
 155 
     | 
    
         
            +
            <li>設定値を表示する``–show-config``オプションを追加。</li>
         
     | 
| 
      
 156 
     | 
    
         
            +
            <li>指定したファイルからコマンドを読み込む``–file``オプションを追加。</li>
         
     | 
| 
      
 157 
     | 
    
         
            +
            <li>groongaとMeCabの辞書のエンコーディングが同じかどうかを確
         
     | 
| 
      
 158 
     | 
    
         
            +
            認するようにした。</li>
         
     | 
| 
      
 159 
     | 
    
         
            +
            <li>Web管理画面:<ul>
         
     | 
| 
      
 160 
     | 
    
         
            +
            <li>データロード機能を追加。</li>
         
     | 
| 
      
 161 
     | 
    
         
            +
            <li>uptimeの表示形式を読みやすい形式に変更。</li>
         
     | 
| 
      
 162 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 163 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 164 
     | 
    
         
            +
            <li>Muninプラグインの追加。<ul>
         
     | 
| 
      
 165 
     | 
    
         
            +
            <li>クエリパフォーマンス計測用</li>
         
     | 
| 
      
 166 
     | 
    
         
            +
            <li>ディスク使用量計測用</li>
         
     | 
| 
      
 167 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 168 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 169 
     | 
    
         
            +
            <li>libedit対応。</li>
         
     | 
| 
      
 170 
     | 
    
         
            +
            <li>存在しないデータベースを指定したときのエラーメッセージを改善。</li>
         
     | 
| 
      
 171 
     | 
    
         
            +
            <li>loadコマンド:<ul>
         
     | 
| 
      
 172 
     | 
    
         
            +
            <li>不正な文字を見つけた場合はログに出力。</li>
         
     | 
| 
      
 173 
     | 
    
         
            +
            <li>必要な項目がない場合はログに出力。</li>
         
     | 
| 
      
 174 
     | 
    
         
            +
            <li>true/false/nullリテラルをサポート。</li>
         
     | 
| 
      
 175 
     | 
    
         
            +
            <li>GeoPointの度での指定をサポート。
         
     | 
| 
      
 176 
     | 
    
         
            +
            (例: “35.6954581363924,139.564207350021”)</li>
         
     | 
| 
      
 177 
     | 
    
         
            +
            <li>NO_KEYテーブルを参照しているカラム値をサポート。</li>
         
     | 
| 
      
 178 
     | 
    
         
            +
            <li>数値のベクタをサポート。</li>
         
     | 
| 
      
 179 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 180 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 181 
     | 
    
         
            +
            <li>selectコマンド<ul>
         
     | 
| 
      
 182 
     | 
    
         
            +
            <li>索引を用いた高速なGeoPointの検索機能を追加。</li>
         
     | 
| 
      
 183 
     | 
    
         
            +
            <li>索引を用いた高速なGeoPointのソート機能を追加。
         
     | 
| 
      
 184 
     | 
    
         
            +
            (ただし複数のソートキーと一緒に使うことはできない。)</li>
         
     | 
| 
      
 185 
     | 
    
         
            +
            <li>ベクタのGeoPointの出力に対応。</li>
         
     | 
| 
      
 186 
     | 
    
         
            +
            <li>不正な入力値に対してエラーを出力するようにした。</li>
         
     | 
| 
      
 187 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 188 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 189 
     | 
    
         
            +
            <li>dumpコマンド:<ul>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <li>フラグを数値ではなくキーワードで出力するように変更。</li>
         
     | 
| 
      
 191 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 192 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 193 
     | 
    
         
            +
            <li>column_listコマンド:<ul>
         
     | 
| 
      
 194 
     | 
    
         
            +
            <li>_keyカラムの出力に対応。</li>
         
     | 
| 
      
 195 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 196 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 197 
     | 
    
         
            +
            <li>deleteコマンド:<ul>
         
     | 
| 
      
 198 
     | 
    
         
            +
            <li>データに不整合が発生する場合はデータを削除しないように変更。</li>
         
     | 
| 
      
 199 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 200 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 201 
     | 
    
         
            +
            <li>statusコマンド:<ul>
         
     | 
| 
      
 202 
     | 
    
         
            +
            <li>キャッシュ情報を追加。</li>
         
     | 
| 
      
 203 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 204 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 205 
     | 
    
         
            +
            <li>データの整合性を確認するcheckコマンドの追加。</li>
         
     | 
| 
      
 206 
     | 
    
         
            +
            <li>強制的にロックを解除するclearlockコマンドの追加。</li>
         
     | 
| 
      
 207 
     | 
    
         
            +
            <li>最大キャッシュ数を指定するcache_limitコマンドの追加。</li>
         
     | 
| 
      
 208 
     | 
    
         
            +
            <li>フラグメンテーションを解消するdefragコマンドの追加。</li>
         
     | 
| 
      
 209 
     | 
    
         
            +
            <li>データ投入後のインデックスカラム作成に対応。</li>
         
     | 
| 
      
 210 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 211 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 212 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 213 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 214 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 215 
     | 
    
         
            +
            <li>不正なsortキーを指定された場合はSEGVする問題の修正。</li>
         
     | 
| 
      
 216 
     | 
    
         
            +
            <li>selectの出力に不正なカラムを指定された時にSEGVする問題を修正。</li>
         
     | 
| 
      
 217 
     | 
    
         
            +
            <li>空のベクタをloadするとSEGVする問題の修正。</li>
         
     | 
| 
      
 218 
     | 
    
         
            +
            <li>メモリリークの修正。</li>
         
     | 
| 
      
 219 
     | 
    
         
            +
            <li>drilldown時に参照先が存在しない場合にSEGVする問題の修正。</li>
         
     | 
| 
      
 220 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 221 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 222 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 223 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 224 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 225 
     | 
    
         
            +
            <li>おばたさん</li>
         
     | 
| 
      
 226 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 227 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 228 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 229 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 230 
     | 
    
         
            +
             
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 233 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 234 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 235 
     | 
    
         
            +
                  <div class="sphinxsidebar">
         
     | 
| 
      
 236 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 237 
     | 
    
         
            +
              <h3><a href="index.html">Table Of Contents</a></h3>
         
     | 
| 
      
 238 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 239 
     | 
    
         
            +
            <li><a class="reference internal" href="#">お知らせ</a><ul>
         
     | 
| 
      
 240 
     | 
    
         
            +
            <li><a class="reference internal" href="#id2">1.0.2リリース - 2010/09/09</a><ul>
         
     | 
| 
      
 241 
     | 
    
         
            +
            <li><a class="reference internal" href="#id3">改良</a></li>
         
     | 
| 
      
 242 
     | 
    
         
            +
            <li><a class="reference internal" href="#id4">変更</a></li>
         
     | 
| 
      
 243 
     | 
    
         
            +
            <li><a class="reference internal" href="#id5">修正</a></li>
         
     | 
| 
      
 244 
     | 
    
         
            +
            <li><a class="reference internal" href="#id6">感謝</a></li>
         
     | 
| 
      
 245 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 246 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 247 
     | 
    
         
            +
            <li><a class="reference internal" href="#id7">1.0.1リリース - 2010/09/06</a><ul>
         
     | 
| 
      
 248 
     | 
    
         
            +
            <li><a class="reference internal" href="#id8">改良</a></li>
         
     | 
| 
      
 249 
     | 
    
         
            +
            <li><a class="reference internal" href="#id9">修正</a></li>
         
     | 
| 
      
 250 
     | 
    
         
            +
            <li><a class="reference internal" href="#id10">感謝</a></li>
         
     | 
| 
      
 251 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 252 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 253 
     | 
    
         
            +
            <li><a class="reference internal" href="#id11">1.0.0リリース - 2010/08/29</a><ul>
         
     | 
| 
      
 254 
     | 
    
         
            +
            <li><a class="reference internal" href="#id12">改良</a></li>
         
     | 
| 
      
 255 
     | 
    
         
            +
            <li><a class="reference internal" href="#id13">修正</a></li>
         
     | 
| 
      
 256 
     | 
    
         
            +
            <li><a class="reference internal" href="#id14">感謝</a></li>
         
     | 
| 
      
 257 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 258 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 259 
     | 
    
         
            +
            <li><a class="reference internal" href="#id15">0.7.7リリース - 2010/08/25</a><ul>
         
     | 
| 
      
 260 
     | 
    
         
            +
            <li><a class="reference internal" href="#id16">改良</a></li>
         
     | 
| 
      
 261 
     | 
    
         
            +
            <li><a class="reference internal" href="#id17">修正</a></li>
         
     | 
| 
      
 262 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 263 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 264 
     | 
    
         
            +
            <li><a class="reference internal" href="#id18">0.7.6リリース - 2010/08/19</a><ul>
         
     | 
| 
      
 265 
     | 
    
         
            +
            <li><a class="reference internal" href="#id19">改良</a></li>
         
     | 
| 
      
 266 
     | 
    
         
            +
            <li><a class="reference internal" href="#id20">修正</a></li>
         
     | 
| 
      
 267 
     | 
    
         
            +
            <li><a class="reference internal" href="#id21">感謝</a></li>
         
     | 
| 
      
 268 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 269 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 270 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 271 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 272 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
              <h3>This Page</h3>
         
     | 
| 
      
 275 
     | 
    
         
            +
              <ul class="this-page-menu">
         
     | 
| 
      
 276 
     | 
    
         
            +
                <li><a href="_sources/news.txt"
         
     | 
| 
      
 277 
     | 
    
         
            +
                       rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 278 
     | 
    
         
            +
              </ul>
         
     | 
| 
      
 279 
     | 
    
         
            +
            <div id="searchbox" style="display: none">
         
     | 
| 
      
 280 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 281 
     | 
    
         
            +
                <form class="search" action="search.html" method="get">
         
     | 
| 
      
 282 
     | 
    
         
            +
                  <input type="text" name="q" size="18" />
         
     | 
| 
      
 283 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 284 
     | 
    
         
            +
                  <input type="hidden" name="check_keywords" value="yes" />
         
     | 
| 
      
 285 
     | 
    
         
            +
                  <input type="hidden" name="area" value="default" />
         
     | 
| 
      
 286 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 287 
     | 
    
         
            +
                <p class="searchtip" style="font-size: 90%">
         
     | 
| 
      
 288 
     | 
    
         
            +
                Enter search terms or a module, class or function name.
         
     | 
| 
      
 289 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 290 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 291 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 292 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 293 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 294 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 295 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 296 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 297 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 298 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 299 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 300 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 301 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 302 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li> 
         
     | 
| 
      
 303 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 304 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 305 
     | 
    
         
            +
                <div class="footer">
         
     | 
| 
      
 306 
     | 
    
         
            +
                    © Copyright 2009-2010, Brazil, Inc.
         
     | 
| 
      
 307 
     | 
    
         
            +
                  Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.1.
         
     | 
| 
      
 308 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 309 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 310 
     | 
    
         
            +
            </html>
         
     | 
| 
         Binary file 
     | 
| 
         @@ -0,0 +1,120 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>4.1. 実行環境 — groonga v1.0.2 documentation</title>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/default.css" type="text/css" />
         
     | 
| 
      
 12 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
      
 13 
     | 
    
         
            +
                <script type="text/javascript">
         
     | 
| 
      
 14 
     | 
    
         
            +
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
      
 15 
     | 
    
         
            +
                    URL_ROOT:    '',
         
     | 
| 
      
 16 
     | 
    
         
            +
                    VERSION:     '1.0.2',
         
     | 
| 
      
 17 
     | 
    
         
            +
                    COLLAPSE_INDEX: false,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    FILE_SUFFIX: '.html',
         
     | 
| 
      
 19 
     | 
    
         
            +
                    HAS_SOURCE:  true
         
     | 
| 
      
 20 
     | 
    
         
            +
                  };
         
     | 
| 
      
 21 
     | 
    
         
            +
                </script>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <script type="text/javascript" src="_static/jquery.js"></script>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <script type="text/javascript" src="_static/underscore.js"></script>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <link rel="top" title="groonga v1.0.2 documentation" href="index.html" />
         
     | 
| 
      
 26 
     | 
    
         
            +
                <link rel="up" title="4. リファレンスマニュアル" href="reference.html" />
         
     | 
| 
      
 27 
     | 
    
         
            +
                <link rel="next" title="4.1.1. groonga実行ファイル" href="execfile.html" />
         
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="prev" title="4. リファレンスマニュアル" href="reference.html" /> 
         
     | 
| 
      
 29 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 30 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 33 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 34 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 35 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 36 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 37 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 38 
     | 
    
         
            +
                      <a href="execfile.html" title="4.1.1. groonga実行ファイル"
         
     | 
| 
      
 39 
     | 
    
         
            +
                         accesskey="N">next</a> |</li>
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 41 
     | 
    
         
            +
                      <a href="reference.html" title="4. リファレンスマニュアル"
         
     | 
| 
      
 42 
     | 
    
         
            +
                         accesskey="P">previous</a> |</li>
         
     | 
| 
      
 43 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li>
         
     | 
| 
      
 44 
     | 
    
         
            +
                      <li><a href="reference.html" accesskey="U">4. リファレンスマニュアル</a> »</li> 
         
     | 
| 
      
 45 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 46 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 49 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <div class="body">
         
     | 
| 
      
 52 
     | 
    
         
            +
                        
         
     | 
| 
      
 53 
     | 
    
         
            +
              <div class="section" id="id1">
         
     | 
| 
      
 54 
     | 
    
         
            +
            <h1>4.1. 実行環境<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 55 
     | 
    
         
            +
            <div class="toctree-wrapper compound">
         
     | 
| 
      
 56 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 57 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="execfile.html">4.1.1. groonga実行ファイル</a></li>
         
     | 
| 
      
 58 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="http.html">4.1.2. http</a></li>
         
     | 
| 
      
 59 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="grnslap.html">4.1.3. grnslap</a></li>
         
     | 
| 
      
 60 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="grntest.html">4.1.4. grntest</a></li>
         
     | 
| 
      
 61 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 62 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 63 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 67 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 68 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 69 
     | 
    
         
            +
                  <div class="sphinxsidebar">
         
     | 
| 
      
 70 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 71 
     | 
    
         
            +
              <h4>Previous topic</h4>
         
     | 
| 
      
 72 
     | 
    
         
            +
              <p class="topless"><a href="reference.html"
         
     | 
| 
      
 73 
     | 
    
         
            +
                                    title="previous chapter">4. リファレンスマニュアル</a></p>
         
     | 
| 
      
 74 
     | 
    
         
            +
              <h4>Next topic</h4>
         
     | 
| 
      
 75 
     | 
    
         
            +
              <p class="topless"><a href="execfile.html"
         
     | 
| 
      
 76 
     | 
    
         
            +
                                    title="next chapter">4.1.1. groonga実行ファイル</a></p>
         
     | 
| 
      
 77 
     | 
    
         
            +
              <h3>This Page</h3>
         
     | 
| 
      
 78 
     | 
    
         
            +
              <ul class="this-page-menu">
         
     | 
| 
      
 79 
     | 
    
         
            +
                <li><a href="_sources/process.txt"
         
     | 
| 
      
 80 
     | 
    
         
            +
                       rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 81 
     | 
    
         
            +
              </ul>
         
     | 
| 
      
 82 
     | 
    
         
            +
            <div id="searchbox" style="display: none">
         
     | 
| 
      
 83 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 84 
     | 
    
         
            +
                <form class="search" action="search.html" method="get">
         
     | 
| 
      
 85 
     | 
    
         
            +
                  <input type="text" name="q" size="18" />
         
     | 
| 
      
 86 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 87 
     | 
    
         
            +
                  <input type="hidden" name="check_keywords" value="yes" />
         
     | 
| 
      
 88 
     | 
    
         
            +
                  <input type="hidden" name="area" value="default" />
         
     | 
| 
      
 89 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 90 
     | 
    
         
            +
                <p class="searchtip" style="font-size: 90%">
         
     | 
| 
      
 91 
     | 
    
         
            +
                Enter search terms or a module, class or function name.
         
     | 
| 
      
 92 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 93 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 94 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 95 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 96 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 97 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 98 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 99 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 100 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 101 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 102 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 103 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 104 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 105 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 106 
     | 
    
         
            +
                      <a href="execfile.html" title="4.1.1. groonga実行ファイル"
         
     | 
| 
      
 107 
     | 
    
         
            +
                         >next</a> |</li>
         
     | 
| 
      
 108 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 109 
     | 
    
         
            +
                      <a href="reference.html" title="4. リファレンスマニュアル"
         
     | 
| 
      
 110 
     | 
    
         
            +
                         >previous</a> |</li>
         
     | 
| 
      
 111 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li>
         
     | 
| 
      
 112 
     | 
    
         
            +
                      <li><a href="reference.html" >4. リファレンスマニュアル</a> »</li> 
         
     | 
| 
      
 113 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 114 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 115 
     | 
    
         
            +
                <div class="footer">
         
     | 
| 
      
 116 
     | 
    
         
            +
                    © Copyright 2009-2010, Brazil, Inc.
         
     | 
| 
      
 117 
     | 
    
         
            +
                  Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.1.
         
     | 
| 
      
 118 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 119 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -0,0 +1,147 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 4 
     | 
    
         
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>4.4. 疑似カラム (pseudo_column) — groonga v1.0.2 documentation</title>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/default.css" type="text/css" />
         
     | 
| 
      
 12 
     | 
    
         
            +
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
      
 13 
     | 
    
         
            +
                <script type="text/javascript">
         
     | 
| 
      
 14 
     | 
    
         
            +
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
      
 15 
     | 
    
         
            +
                    URL_ROOT:    '',
         
     | 
| 
      
 16 
     | 
    
         
            +
                    VERSION:     '1.0.2',
         
     | 
| 
      
 17 
     | 
    
         
            +
                    COLLAPSE_INDEX: false,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    FILE_SUFFIX: '.html',
         
     | 
| 
      
 19 
     | 
    
         
            +
                    HAS_SOURCE:  true
         
     | 
| 
      
 20 
     | 
    
         
            +
                  };
         
     | 
| 
      
 21 
     | 
    
         
            +
                </script>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <script type="text/javascript" src="_static/jquery.js"></script>
         
     | 
| 
      
 23 
     | 
    
         
            +
                <script type="text/javascript" src="_static/underscore.js"></script>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <link rel="top" title="groonga v1.0.2 documentation" href="index.html" />
         
     | 
| 
      
 26 
     | 
    
         
            +
                <link rel="up" title="4. リファレンスマニュアル" href="reference.html" />
         
     | 
| 
      
 27 
     | 
    
         
            +
                <link rel="next" title="4.5. grn_expr" href="expr.html" />
         
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="prev" title="4.3. データ型" href="type.html" /> 
         
     | 
| 
      
 29 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 30 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 31 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 33 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 34 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 35 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 36 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 37 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 38 
     | 
    
         
            +
                      <a href="expr.html" title="4.5. grn_expr"
         
     | 
| 
      
 39 
     | 
    
         
            +
                         accesskey="N">next</a> |</li>
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 41 
     | 
    
         
            +
                      <a href="type.html" title="4.3. データ型"
         
     | 
| 
      
 42 
     | 
    
         
            +
                         accesskey="P">previous</a> |</li>
         
     | 
| 
      
 43 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li>
         
     | 
| 
      
 44 
     | 
    
         
            +
                      <li><a href="reference.html" accesskey="U">4. リファレンスマニュアル</a> »</li> 
         
     | 
| 
      
 45 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 46 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 49 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <div class="body">
         
     | 
| 
      
 52 
     | 
    
         
            +
                        
         
     | 
| 
      
 53 
     | 
    
         
            +
              <div class="section" id="pseudo-column">
         
     | 
| 
      
 54 
     | 
    
         
            +
            <h1>4.4. 疑似カラム (pseudo_column)<a class="headerlink" href="#pseudo-column" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 55 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 56 
     | 
    
         
            +
            <h2>4.4.1. 名前<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 57 
     | 
    
         
            +
            <p>疑似カラム</p>
         
     | 
| 
      
 58 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 59 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 60 
     | 
    
         
            +
            <h2>4.4.2. 説明<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 61 
     | 
    
         
            +
            <p>groongaのデータベースで作成したテーブルには、いくつかのカラムが自動的に定義されます。</p>
         
     | 
| 
      
 62 
     | 
    
         
            +
            <p>これらのカラムはいずれもアンダースコア(‘_’)で始まる名前が付与されます。定義される疑似カラムは、テーブルの種類によって異なります。</p>
         
     | 
| 
      
 63 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">_id</span></tt></p>
         
     | 
| 
      
 64 
     | 
    
         
            +
            <blockquote>
         
     | 
| 
      
 65 
     | 
    
         
            +
            レコードに付与される一意な番号です。全てのテーブルに定義されます。値の範囲は1〜1073741824の整数で、通常はレコードを追加した順に1ずつ加算されます。_idの値は不変で、レコードが存在する限り変更することはできません。ただし、削除されたレコードの_idの値は再利用されます。</blockquote>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">_key</span></tt></p>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <blockquote>
         
     | 
| 
      
 68 
     | 
    
         
            +
            レコードの主キー値を表します。主キーを持つテーブルのみに定義されます。主キー値はテーブルの中で一意であり、変更することはできません。</blockquote>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">_value</span></tt></p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <blockquote>
         
     | 
| 
      
 71 
     | 
    
         
            +
            レコードの値を表します。value_typeを指定したテーブルのみに定義されます。自由に変更可能です。</blockquote>
         
     | 
| 
      
 72 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">_score</span></tt></p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            <blockquote>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <p>各レコードのスコア値を表します。検索結果として生成されたテーブルのみに定義されます。</p>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <p>検索処理を実行する過程で値が設定されますが、自由に変更可能です。</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            </blockquote>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">_nsubrecs</span></tt></p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <blockquote>
         
     | 
| 
      
 79 
     | 
    
         
            +
            主キーの値が同一であったレコードの件数を表します。検索結果として生成されたテーブルのみに定義されます。グループ化(drilldown)処理を実行すると、グループ化前のテーブルにおいて、グループ化キーの値が同一であったレコードの件数が、グループ化処理の結果を格納するテーブルの_nsubrecsに記録されます。</blockquote>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 81 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 85 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 86 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 87 
     | 
    
         
            +
                  <div class="sphinxsidebar">
         
     | 
| 
      
 88 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 89 
     | 
    
         
            +
              <h3><a href="index.html">Table Of Contents</a></h3>
         
     | 
| 
      
 90 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <li><a class="reference internal" href="#">4.4. 疑似カラム (pseudo_column)</a><ul>
         
     | 
| 
      
 92 
     | 
    
         
            +
            <li><a class="reference internal" href="#id1">4.4.1. 名前</a></li>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <li><a class="reference internal" href="#id2">4.4.2. 説明</a></li>
         
     | 
| 
      
 94 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 95 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
              <h4>Previous topic</h4>
         
     | 
| 
      
 99 
     | 
    
         
            +
              <p class="topless"><a href="type.html"
         
     | 
| 
      
 100 
     | 
    
         
            +
                                    title="previous chapter">4.3. データ型</a></p>
         
     | 
| 
      
 101 
     | 
    
         
            +
              <h4>Next topic</h4>
         
     | 
| 
      
 102 
     | 
    
         
            +
              <p class="topless"><a href="expr.html"
         
     | 
| 
      
 103 
     | 
    
         
            +
                                    title="next chapter">4.5. grn_expr</a></p>
         
     | 
| 
      
 104 
     | 
    
         
            +
              <h3>This Page</h3>
         
     | 
| 
      
 105 
     | 
    
         
            +
              <ul class="this-page-menu">
         
     | 
| 
      
 106 
     | 
    
         
            +
                <li><a href="_sources/pseudo_column.txt"
         
     | 
| 
      
 107 
     | 
    
         
            +
                       rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 108 
     | 
    
         
            +
              </ul>
         
     | 
| 
      
 109 
     | 
    
         
            +
            <div id="searchbox" style="display: none">
         
     | 
| 
      
 110 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 111 
     | 
    
         
            +
                <form class="search" action="search.html" method="get">
         
     | 
| 
      
 112 
     | 
    
         
            +
                  <input type="text" name="q" size="18" />
         
     | 
| 
      
 113 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 114 
     | 
    
         
            +
                  <input type="hidden" name="check_keywords" value="yes" />
         
     | 
| 
      
 115 
     | 
    
         
            +
                  <input type="hidden" name="area" value="default" />
         
     | 
| 
      
 116 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 117 
     | 
    
         
            +
                <p class="searchtip" style="font-size: 90%">
         
     | 
| 
      
 118 
     | 
    
         
            +
                Enter search terms or a module, class or function name.
         
     | 
| 
      
 119 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 121 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 122 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 123 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 124 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 125 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 126 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 127 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 128 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 129 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 130 
     | 
    
         
            +
                      <a href="genindex.html" title="General Index"
         
     | 
| 
      
 131 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 132 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 133 
     | 
    
         
            +
                      <a href="expr.html" title="4.5. grn_expr"
         
     | 
| 
      
 134 
     | 
    
         
            +
                         >next</a> |</li>
         
     | 
| 
      
 135 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 136 
     | 
    
         
            +
                      <a href="type.html" title="4.3. データ型"
         
     | 
| 
      
 137 
     | 
    
         
            +
                         >previous</a> |</li>
         
     | 
| 
      
 138 
     | 
    
         
            +
                    <li><a href="index.html">groonga v1.0.2 documentation</a> »</li>
         
     | 
| 
      
 139 
     | 
    
         
            +
                      <li><a href="reference.html" >4. リファレンスマニュアル</a> »</li> 
         
     | 
| 
      
 140 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 141 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 142 
     | 
    
         
            +
                <div class="footer">
         
     | 
| 
      
 143 
     | 
    
         
            +
                    © Copyright 2009-2010, Brazil, Inc.
         
     | 
| 
      
 144 
     | 
    
         
            +
                  Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.1.
         
     | 
| 
      
 145 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 146 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 147 
     | 
    
         
            +
            </html>
         
     |