rroonga 5.0.0-x86-mingw32 → 5.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.
Files changed (733) hide show
  1. checksums.yaml +8 -8
  2. data/.yardopts +1 -0
  3. data/Rakefile +1 -16
  4. data/example/bookmark.rb +1 -6
  5. data/example/index-html.rb +0 -1
  6. data/ext/groonga/extconf.rb +4 -7
  7. data/ext/groonga/rb-grn-array.c +1 -1
  8. data/ext/groonga/rb-grn-column.c +33 -67
  9. data/ext/groonga/rb-grn-context.c +5 -5
  10. data/ext/groonga/rb-grn-database.c +2 -2
  11. data/ext/groonga/rb-grn-double-array-trie.c +4 -2
  12. data/ext/groonga/rb-grn-encoding-support.c +7 -1
  13. data/ext/groonga/rb-grn-equal-operator.c +85 -0
  14. data/ext/groonga/rb-grn-exception.c +17 -0
  15. data/ext/groonga/rb-grn-expression.c +85 -43
  16. data/ext/groonga/rb-grn-greater-equal-operator.c +88 -0
  17. data/ext/groonga/rb-grn-greater-operator.c +85 -0
  18. data/ext/groonga/rb-grn-hash.c +1 -1
  19. data/ext/groonga/rb-grn-index-column.c +150 -11
  20. data/ext/groonga/rb-grn-less-equal-operator.c +88 -0
  21. data/ext/groonga/rb-grn-less-operator.c +85 -0
  22. data/ext/groonga/rb-grn-logger.c +5 -5
  23. data/ext/groonga/rb-grn-match-operator.c +86 -0
  24. data/ext/groonga/rb-grn-normalizer.c +8 -1
  25. data/ext/groonga/rb-grn-not-equal-operator.c +85 -0
  26. data/ext/groonga/rb-grn-object.c +170 -36
  27. data/ext/groonga/rb-grn-operator.c +395 -172
  28. data/ext/groonga/rb-grn-patricia-trie.c +10 -8
  29. data/ext/groonga/rb-grn-plugin.c +51 -3
  30. data/ext/groonga/rb-grn-prefix-operator.c +86 -0
  31. data/ext/groonga/rb-grn-procedure-type.c +4 -0
  32. data/ext/groonga/rb-grn-query-logger.c +4 -4
  33. data/ext/groonga/rb-grn-regexp-operator.c +85 -0
  34. data/ext/groonga/rb-grn-snippet.c +1 -1
  35. data/ext/groonga/rb-grn-table-key-support.c +9 -5
  36. data/ext/groonga/rb-grn-table.c +52 -66
  37. data/ext/groonga/rb-grn-type.c +1 -1
  38. data/ext/groonga/rb-grn-utils.c +22 -3
  39. data/ext/groonga/rb-grn.h +31 -4
  40. data/ext/groonga/rb-groonga.c +9 -9
  41. data/lib/1.9/groonga.so +0 -0
  42. data/lib/2.0/groonga.so +0 -0
  43. data/lib/2.1/groonga.so +0 -0
  44. data/lib/2.2/groonga.so +0 -0
  45. data/lib/groonga/context.rb +31 -0
  46. data/lib/groonga/expression-builder.rb +14 -1
  47. data/lib/groonga/record.rb +10 -8
  48. data/lib/groonga/schema.rb +3 -1
  49. data/rroonga-build.rb +2 -2
  50. data/rroonga.gemspec +3 -3
  51. data/test/groonga-test-utils.rb +4 -0
  52. data/test/test-column.rb +28 -26
  53. data/test/test-exception.rb +1 -0
  54. data/test/test-expression-builder.rb +83 -1
  55. data/test/test-expression.rb +80 -48
  56. data/test/test-index-column.rb +102 -29
  57. data/test/test-normalizer.rb +35 -29
  58. data/test/test-operator.rb +214 -0
  59. data/test/test-plugin.rb +24 -6
  60. data/test/test-procedure.rb +29 -0
  61. data/test/test-schema-type.rb +14 -0
  62. data/test/test-table-select-mecab.rb +1 -4
  63. data/test/test-table.rb +7 -0
  64. data/test/test-token-regexp.rb +30 -0
  65. data/test/test-type.rb +24 -0
  66. data/vendor/local/bin/grndb.exe +0 -0
  67. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  68. data/vendor/local/bin/groonga.exe +0 -0
  69. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  70. data/vendor/local/bin/libgroonga-0.dll +0 -0
  71. data/vendor/local/bin/libmecab-1.dll +0 -0
  72. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  73. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  74. data/vendor/local/bin/libonig-5.dll +0 -0
  75. data/vendor/local/bin/libstdc++-6.dll +0 -0
  76. data/vendor/local/bin/lz4.exe +0 -0
  77. data/vendor/local/bin/lz4c.exe +0 -0
  78. data/vendor/local/bin/lz4cat +0 -0
  79. data/vendor/local/bin/mecab-config +2 -2
  80. data/vendor/local/bin/mecab.exe +0 -0
  81. data/vendor/local/bin/onig-config +1 -1
  82. data/vendor/local/bin/zlib1.dll +0 -0
  83. data/vendor/local/etc/groonga/groonga.conf +1 -1
  84. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  85. data/vendor/local/include/groonga/groonga.h +1 -0
  86. data/vendor/local/include/groonga/groonga/expr.h +2 -0
  87. data/vendor/local/include/groonga/groonga/groonga.h +32 -5
  88. data/vendor/local/include/groonga/groonga/ii.h +7 -0
  89. data/vendor/local/include/groonga/groonga/obj.h +37 -0
  90. data/vendor/local/include/groonga/groonga/scorer.h +95 -0
  91. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  92. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  93. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  94. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  95. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  98. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  99. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  100. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  101. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  102. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  103. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +6 -3
  104. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +6 -5
  105. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +421 -17
  106. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  107. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  108. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  109. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  110. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  111. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  112. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  113. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  114. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  115. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  116. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  117. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  118. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  119. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  120. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  121. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  122. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +12 -4
  123. data/vendor/local/lib/groonga/scripts/ruby/database.rb +11 -3
  124. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +23 -0
  125. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +158 -0
  126. data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +39 -0
  127. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +4 -0
  128. data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +2 -0
  129. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +11 -7
  130. data/vendor/local/lib/groonga/scripts/ruby/object.rb +11 -0
  131. data/vendor/local/lib/groonga/scripts/ruby/operator.rb +22 -0
  132. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +7 -2
  133. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -11
  134. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +137 -34
  135. data/vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb +9 -0
  136. data/vendor/local/lib/libgroonga.a +0 -0
  137. data/vendor/local/lib/libgroonga.dll.a +0 -0
  138. data/vendor/local/lib/libgroonga.la +2 -2
  139. data/vendor/local/lib/liblz4.a +0 -0
  140. data/vendor/local/lib/liblz4.dll +0 -0
  141. data/vendor/local/lib/liblz4.dll.1 +0 -0
  142. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  143. data/vendor/local/lib/libmecab.a +0 -0
  144. data/vendor/local/lib/libmecab.dll.a +0 -0
  145. data/vendor/local/lib/libmecab.la +2 -2
  146. data/vendor/local/lib/libmsgpack.a +0 -0
  147. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  148. data/vendor/local/lib/libmsgpack.la +2 -2
  149. data/vendor/local/lib/libmsgpackc.a +0 -0
  150. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  151. data/vendor/local/lib/libmsgpackc.la +2 -2
  152. data/vendor/local/lib/libonig.a +0 -0
  153. data/vendor/local/lib/libonig.dll.a +0 -0
  154. data/vendor/local/lib/libonig.la +2 -2
  155. data/vendor/local/lib/libz.a +0 -0
  156. data/vendor/local/lib/libz.dll.a +0 -0
  157. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  158. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  159. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  160. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  161. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  162. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  163. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  164. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  165. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  166. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  167. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  168. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  169. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  170. data/vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png +0 -0
  171. data/vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png +0 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +1 -1
  173. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +32 -17
  174. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  175. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  176. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  177. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  178. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  179. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  180. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  181. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  182. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +194 -0
  183. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +1 -1
  184. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +2 -2
  185. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +2 -2
  186. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
  187. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +3 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +42 -0
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt +54 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
  191. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +2 -2
  192. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
  193. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -3
  194. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -4
  195. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +4 -4
  197. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +173 -0
  198. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  199. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +7 -6
  200. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +64 -0
  201. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  202. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +11 -1
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +3 -2
  204. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
  205. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
  206. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +17 -17
  207. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +12 -12
  208. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +7 -7
  209. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +4 -4
  210. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +6 -6
  211. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -1
  212. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +47 -26
  213. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt +5 -5
  214. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +3 -3
  215. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +6 -6
  216. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +1 -1
  218. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/in_values.txt +54 -2
  219. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +4 -4
  220. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +4 -4
  221. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  222. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -0
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +4 -0
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +2 -1
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +403 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +217 -0
  228. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  229. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  230. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +13 -0
  231. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +8 -0
  232. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +530 -16
  233. data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +2 -1
  234. data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +15 -0
  235. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +66 -1
  236. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  237. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +0 -81
  238. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +6 -68
  239. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -26
  240. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  241. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  242. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  243. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -4
  244. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  245. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  246. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  247. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
  248. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  249. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  250. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  251. data/vendor/local/share/doc/groonga/en/html/characteristic.html +18 -20
  252. data/vendor/local/share/doc/groonga/en/html/client.html +22 -24
  253. data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
  254. data/vendor/local/share/doc/groonga/en/html/contribution.html +18 -20
  255. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
  256. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
  257. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
  258. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
  259. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +51 -38
  260. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
  261. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
  262. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
  263. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
  264. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
  265. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +24 -26
  266. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
  267. data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
  268. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +24 -26
  269. data/vendor/local/share/doc/groonga/en/html/genindex.html +26 -14
  270. data/vendor/local/share/doc/groonga/en/html/index.html +150 -130
  271. data/vendor/local/share/doc/groonga/en/html/install.html +32 -34
  272. data/vendor/local/share/doc/groonga/en/html/install/centos.html +28 -30
  273. data/vendor/local/share/doc/groonga/en/html/install/debian.html +24 -26
  274. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -30
  275. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +22 -24
  276. data/vendor/local/share/doc/groonga/en/html/install/others.html +87 -89
  277. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +22 -24
  278. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +25 -27
  279. data/vendor/local/share/doc/groonga/en/html/install/windows.html +30 -32
  280. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
  281. data/vendor/local/share/doc/groonga/en/html/news.html +256 -27
  282. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
  283. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +19 -21
  284. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
  285. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +32 -34
  286. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +27 -29
  287. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +98 -100
  288. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +68 -70
  289. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +102 -104
  290. data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
  291. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  292. data/vendor/local/share/doc/groonga/en/html/reference.html +139 -118
  293. data/vendor/local/share/doc/groonga/en/html/reference/api.html +51 -52
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +49 -51
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +60 -62
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +80 -82
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +42 -44
  298. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +37 -39
  299. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +130 -80
  300. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +48 -50
  301. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +44 -46
  302. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -81
  303. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +42 -44
  304. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +44 -46
  305. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +42 -44
  306. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +41 -43
  307. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +41 -43
  308. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +40 -42
  309. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +89 -91
  310. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +44 -46
  311. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +39 -41
  312. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +75 -77
  313. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +64 -66
  314. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +40 -42
  315. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +39 -41
  316. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +202 -0
  317. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +58 -60
  318. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
  319. data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
  320. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +17 -19
  321. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +22 -24
  322. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +17 -19
  323. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +58 -60
  324. data/vendor/local/share/doc/groonga/en/html/reference/command.html +56 -54
  325. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
  326. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +53 -55
  327. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +22 -24
  328. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +94 -96
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +39 -41
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +43 -45
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +23 -25
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +39 -41
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +71 -73
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +24 -26
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -46
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +37 -39
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +24 -26
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +35 -37
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +22 -24
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -45
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +49 -47
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +23 -25
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +24 -26
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +26 -28
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +314 -0
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +252 -0
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +87 -89
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +46 -48
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +195 -0
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +193 -0
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +38 -40
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +37 -39
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +61 -51
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +54 -56
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +54 -56
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +590 -592
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +37 -39
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +40 -42
  360. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +92 -94
  361. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +152 -154
  362. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +49 -51
  363. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +39 -41
  364. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +68 -70
  365. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +103 -105
  366. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +45 -47
  367. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +52 -54
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -21
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +35 -37
  370. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +21 -23
  371. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +26 -28
  372. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +73 -75
  373. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
  374. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  375. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +42 -44
  376. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +34 -36
  377. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +124 -90
  378. data/vendor/local/share/doc/groonga/en/html/reference/function.html +42 -44
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +66 -68
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +44 -46
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +113 -115
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +55 -57
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +45 -47
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +81 -83
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +65 -67
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +54 -56
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +135 -44
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -42
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +81 -83
  390. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +43 -45
  391. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +67 -69
  392. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +66 -70
  393. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +39 -41
  394. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +349 -286
  395. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +483 -417
  396. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -37
  397. data/vendor/local/share/doc/groonga/en/html/reference/log.html +38 -40
  398. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +44 -46
  399. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +30 -31
  400. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +32 -34
  401. data/vendor/local/share/doc/groonga/en/html/reference/output.html +32 -34
  402. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
  403. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +60 -62
  404. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +931 -0
  405. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +442 -0
  406. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +153 -0
  407. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +287 -0
  408. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +114 -0
  409. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +45 -47
  410. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +51 -53
  411. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +40 -42
  412. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +38 -40
  413. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +40 -42
  414. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +52 -54
  415. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +36 -38
  416. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +1394 -34
  417. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +57 -59
  418. data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -40
  419. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  420. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  421. data/vendor/local/share/doc/groonga/en/html/server.html +23 -24
  422. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +28 -30
  423. data/vendor/local/share/doc/groonga/en/html/server/http.html +42 -44
  424. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +68 -70
  425. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +30 -32
  426. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +29 -31
  427. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +137 -0
  428. data/vendor/local/share/doc/groonga/en/html/server/package.html +36 -38
  429. data/vendor/local/share/doc/groonga/en/html/spec.html +22 -24
  430. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +208 -129
  431. data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
  432. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
  433. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  434. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  435. data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -25
  436. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +17 -19
  437. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +31 -33
  438. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +20 -22
  439. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
  440. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +17 -19
  441. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +21 -23
  442. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +50 -52
  443. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +27 -125
  444. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +18 -20
  445. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +20 -22
  446. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +33 -35
  447. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  448. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png +0 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png +0 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +1 -1
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +32 -17
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +194 -0
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +1 -1
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +2 -2
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +2 -2
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +3 -0
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +42 -0
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt +54 -0
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +2 -2
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -3
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -4
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +5 -5
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +4 -4
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +173 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +7 -6
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +64 -0
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +11 -1
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +3 -2
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +17 -17
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +12 -12
  486. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +7 -7
  487. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +4 -4
  488. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +6 -6
  489. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -1
  490. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +47 -26
  491. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt +5 -5
  492. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +3 -3
  493. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +6 -6
  494. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
  495. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +1 -1
  496. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt +54 -2
  497. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +4 -4
  498. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +4 -4
  499. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  500. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  501. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -0
  502. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +4 -0
  503. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +2 -1
  504. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +403 -0
  505. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +217 -0
  506. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  507. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  508. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +13 -0
  509. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +8 -0
  510. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +530 -16
  511. data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +2 -1
  512. data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +15 -0
  513. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +66 -1
  514. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  515. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +0 -81
  516. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +6 -68
  517. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -26
  518. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  519. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  520. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  521. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -4
  522. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  523. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  524. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  525. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
  526. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  527. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  529. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
  530. data/vendor/local/share/doc/groonga/ja/html/client.html +22 -24
  531. data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
  532. data/vendor/local/share/doc/groonga/ja/html/contribution.html +18 -20
  533. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
  534. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
  535. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
  536. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
  537. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +51 -38
  538. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
  539. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
  540. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
  541. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
  542. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +17 -19
  543. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +24 -26
  544. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -19
  545. data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
  546. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +20 -22
  547. data/vendor/local/share/doc/groonga/ja/html/genindex.html +26 -14
  548. data/vendor/local/share/doc/groonga/ja/html/index.html +150 -130
  549. data/vendor/local/share/doc/groonga/ja/html/install.html +32 -34
  550. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +31 -33
  551. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -27
  552. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +29 -31
  553. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +22 -24
  554. data/vendor/local/share/doc/groonga/ja/html/install/others.html +78 -80
  555. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +21 -23
  556. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +26 -28
  557. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -31
  558. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
  559. data/vendor/local/share/doc/groonga/ja/html/news.html +210 -27
  560. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
  561. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +19 -21
  562. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
  563. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +32 -34
  564. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +27 -29
  565. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +91 -93
  566. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +59 -61
  567. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +89 -91
  568. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
  569. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  570. data/vendor/local/share/doc/groonga/ja/html/reference.html +139 -118
  571. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +51 -52
  572. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +49 -51
  573. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +55 -57
  574. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +80 -82
  575. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +42 -44
  576. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +37 -39
  577. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +126 -76
  578. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +48 -50
  579. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +44 -46
  580. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +74 -76
  581. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +42 -44
  582. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +44 -46
  583. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +42 -44
  584. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +41 -43
  585. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +41 -43
  586. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +40 -42
  587. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +89 -91
  588. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +44 -46
  589. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +39 -41
  590. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +75 -77
  591. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +64 -66
  592. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +40 -42
  593. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +39 -41
  594. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +197 -0
  595. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +58 -60
  596. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
  597. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
  598. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +17 -19
  599. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +22 -24
  600. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +17 -19
  601. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +48 -50
  602. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
  603. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
  604. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +43 -45
  605. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +22 -24
  606. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +93 -95
  607. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +35 -37
  608. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +43 -45
  609. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +23 -25
  610. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +39 -41
  611. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +62 -64
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +24 -26
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -40
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +37 -39
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +24 -26
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -34
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +22 -24
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +33 -35
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +48 -46
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +23 -25
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +24 -26
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +26 -28
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +314 -0
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +250 -0
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +80 -81
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +46 -48
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +188 -0
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +190 -0
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +38 -40
  630. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +37 -39
  631. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +57 -47
  632. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +71 -73
  633. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +53 -55
  634. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +53 -55
  635. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +394 -396
  636. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +37 -39
  637. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +38 -40
  638. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +78 -80
  639. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +123 -125
  640. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -51
  641. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +39 -41
  642. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +61 -63
  643. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +89 -91
  644. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +46 -48
  645. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +51 -53
  646. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -21
  647. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -37
  648. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +21 -23
  649. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +26 -28
  650. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +61 -63
  651. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
  652. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  653. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +42 -44
  654. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +34 -36
  655. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +126 -90
  656. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +42 -44
  657. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +63 -65
  658. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +44 -46
  659. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +94 -96
  660. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +55 -57
  661. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +45 -47
  662. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +66 -68
  663. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +55 -57
  664. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +53 -55
  665. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +135 -44
  666. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +40 -42
  667. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +70 -72
  668. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +43 -45
  669. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +53 -55
  670. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +56 -62
  671. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +36 -38
  672. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +229 -171
  673. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +381 -322
  674. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -36
  675. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +38 -40
  676. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +38 -40
  677. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +28 -30
  678. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +32 -34
  679. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +28 -30
  680. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
  681. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +39 -41
  682. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +878 -0
  683. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +442 -0
  684. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +154 -0
  685. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +287 -0
  686. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +115 -0
  687. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +45 -47
  688. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +48 -50
  689. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +40 -42
  690. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +38 -40
  691. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +40 -42
  692. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -44
  693. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +37 -39
  694. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +1300 -34
  695. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +57 -59
  696. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -40
  697. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  698. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  699. data/vendor/local/share/doc/groonga/ja/html/server.html +23 -24
  700. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +28 -30
  701. data/vendor/local/share/doc/groonga/ja/html/server/http.html +42 -44
  702. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +62 -64
  703. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +30 -32
  704. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +29 -31
  705. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +138 -0
  706. data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -37
  707. data/vendor/local/share/doc/groonga/ja/html/spec.html +22 -24
  708. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +207 -128
  709. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
  710. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
  711. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  712. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  713. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -25
  714. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -19
  715. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +30 -32
  716. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +17 -19
  717. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +17 -19
  718. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
  719. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +23 -25
  720. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +47 -49
  721. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +27 -125
  722. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -20
  723. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +20 -22
  724. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +31 -33
  725. data/vendor/local/share/license/mruby/README.md +2 -2
  726. data/vendor/local/share/man/ja/man1/groonga.1 +6205 -2251
  727. data/vendor/local/share/man/man1/groonga.1 +7210 -3029
  728. metadata +75 -11
  729. data/doc/text/news.textile +0 -1217
  730. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +0 -10308
  731. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +0 -999
  732. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +0 -10308
  733. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +0 -999
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.3.28. ruby_load &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>7.3.32. ruby_load &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="7.3. コマンド" href="../command.html" />
31
- <link rel="next" title="7.3.29. select" href="select.html" />
32
- <link rel="prev" title="7.3.27. ruby_eval" href="ruby_eval.html" />
31
+ <link rel="next" title="7.3.33. select" href="select.html" />
32
+ <link rel="prev" title="7.3.31. ruby_eval" href="ruby_eval.html" />
33
33
  </head>
34
- <body role="document">
34
+ <body>
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../../index.html">
@@ -49,19 +49,19 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related" role="navigation" aria-label="related navigation">
52
+ <div class="related">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
56
56
  <a href="../../genindex.html" title="総合索引"
57
57
  accesskey="I">索引</a></li>
58
58
  <li class="right" >
59
- <a href="select.html" title="7.3.29. select"
59
+ <a href="select.html" title="7.3.33. select"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="ruby_eval.html" title="7.3.27. ruby_eval"
62
+ <a href="ruby_eval.html" title="7.3.31. ruby_eval"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
66
66
  <li><a href="../command.html" accesskey="U">7.3. コマンド</a> &raquo;</li>
67
67
  </ul>
@@ -70,25 +70,25 @@
70
70
  <div class="document">
71
71
  <div class="documentwrapper">
72
72
  <div class="bodywrapper">
73
- <div class="body" role="main">
73
+ <div class="body">
74
74
 
75
75
  <div class="section" id="ruby-load">
76
- <h1>7.3.28. <code class="docutils literal"><span class="pre">ruby_load</span></code><a class="headerlink" href="#ruby-load" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
+ <h1>7.3.32. <tt class="docutils literal"><span class="pre">ruby_load</span></tt><a class="headerlink" href="#ruby-load" title="このヘッドラインへのパーマリンク">¶</a></h1>
77
77
  <div class="section" id="summary">
78
- <h2>7.3.28.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> コマンドは指定したRubyスクリプトを読み込みます。</p>
78
+ <h2>7.3.32.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> コマンドは指定したRubyスクリプトを読み込みます。</p>
80
80
  </div>
81
81
  <div class="section" id="syntax">
82
- <h2>7.3.28.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
83
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> には必須な引数が1つあります:</p>
82
+ <h2>7.3.32.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
83
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> には必須な引数が1つあります:</p>
84
84
  <div class="highlight-none"><div class="highlight"><pre>ruby_load path
85
85
  </pre></div>
86
86
  </div>
87
87
  </div>
88
88
  <div class="section" id="usage">
89
- <h2>7.3.28.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
90
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> を使ってmrubyがサポートしているスクリプトを読み込むことができます。</p>
91
- <p>Rubyスクリプトとして <code class="docutils literal"><span class="pre">expression.rb</span></code> を単に読むこむ例です。</p>
89
+ <h2>7.3.32.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
90
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> を使ってmrubyがサポートしているスクリプトを読み込むことができます。</p>
91
+ <p>Rubyスクリプトとして <tt class="docutils literal"><span class="pre">expression.rb</span></tt> を単に読むこむ例です。</p>
92
92
  <p>実行例:</p>
93
93
  <div class="highlight-none"><div class="highlight"><pre>register ruby/load
94
94
  # [[0, 1337566253.89858, 0.000355720520019531], true]
@@ -96,35 +96,35 @@ ruby_load &quot;expression.rb&quot;
96
96
  # [[0, 1337566253.89858, 0.000355720520019531], {&quot;value&quot;: null}]
97
97
  </pre></div>
98
98
  </div>
99
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> コマンドを使うには事前に <code class="docutils literal"><span class="pre">ruby/load</span></code> プラグインを登録します。</p>
100
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> コマンドは実験的なプラグインです。このコマンドは将来的に変更されるかも知れません。</p>
99
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> コマンドを使うには事前に <tt class="docutils literal"><span class="pre">ruby/load</span></tt> プラグインを登録します。</p>
100
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> コマンドは実験的なプラグインです。このコマンドは将来的に変更されるかも知れません。</p>
101
101
  </div>
102
102
  <div class="section" id="parameters">
103
- <h2>7.3.28.4. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
103
+ <h2>7.3.32.4. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
104
104
  <p>このセクションではすべての引数について説明します。</p>
105
105
  <div class="section" id="path">
106
- <h3>7.3.28.4.1. <code class="docutils literal"><span class="pre">path</span></code><a class="headerlink" href="#path" title="このヘッドラインへのパーマリンク">¶</a></h3>
106
+ <h3>7.3.32.4.1. <tt class="docutils literal"><span class="pre">path</span></tt><a class="headerlink" href="#path" title="このヘッドラインへのパーマリンク">¶</a></h3>
107
107
  <p>読み込みたいrubyスクリプトを指定します。</p>
108
108
  </div>
109
109
  </div>
110
110
  <div class="section" id="return-value">
111
- <h2>7.3.28.5. 戻り値<a class="headerlink" href="#return-value" title="このヘッドラインへのパーマリンク">¶</a></h2>
112
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> は例外情報などのメタデータつきで読み込んだ結果を返します(メタデータはまだ実装されていないので今のところ含まれません):</p>
111
+ <h2>7.3.32.5. 戻り値<a class="headerlink" href="#return-value" title="このヘッドラインへのパーマリンク">¶</a></h2>
112
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> は例外情報などのメタデータつきで読み込んだ結果を返します(メタデータはまだ実装されていないので今のところ含まれません):</p>
113
113
  <div class="highlight-none"><div class="highlight"><pre>[HEADER, {&quot;value&quot;: LOADED_VALUE}]
114
114
  </pre></div>
115
115
  </div>
116
- <p><code class="docutils literal"><span class="pre">HEADER</span></code></p>
116
+ <p><tt class="docutils literal"><span class="pre">HEADER</span></tt></p>
117
117
  <blockquote>
118
- <div><p><code class="docutils literal"><span class="pre">HEADER</span></code> については <a class="reference internal" href="../command/output_format.html"><em>出力形式</em></a> を参照してください。</p>
118
+ <div><p><tt class="docutils literal"><span class="pre">HEADER</span></tt> については <a class="reference internal" href="../command/output_format.html"><em>出力形式</em></a> を参照してください。</p>
119
119
  </div></blockquote>
120
- <p><code class="docutils literal"><span class="pre">LOADED_VALUE</span></code></p>
120
+ <p><tt class="docutils literal"><span class="pre">LOADED_VALUE</span></tt></p>
121
121
  <blockquote>
122
- <div><p><code class="docutils literal"><span class="pre">LOADED_VALUE</span></code> はrubyスクリプトを読み込んだ結果です。</p>
123
- <p><code class="docutils literal"><span class="pre">ruby_load</span></code> は <code class="docutils literal"><span class="pre">LOADED_VALUE</span></code> としていまのところは単に <code class="docutils literal"><span class="pre">null</span></code> を返します。将来的には <code class="docutils literal"><span class="pre">LOADED_VALUE</span></code> がサポートされる予定です。</p>
122
+ <div><p><tt class="docutils literal"><span class="pre">LOADED_VALUE</span></tt> はrubyスクリプトを読み込んだ結果です。</p>
123
+ <p><tt class="docutils literal"><span class="pre">ruby_load</span></tt> は <tt class="docutils literal"><span class="pre">LOADED_VALUE</span></tt> としていまのところは単に <tt class="docutils literal"><span class="pre">null</span></tt> を返します。将来的には <tt class="docutils literal"><span class="pre">LOADED_VALUE</span></tt> がサポートされる予定です。</p>
124
124
  </div></blockquote>
125
125
  </div>
126
126
  <div class="section" id="see-also">
127
- <h2>7.3.28.6. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
127
+ <h2>7.3.32.6. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
128
128
  <p><a class="reference internal" href="ruby_eval.html"><em>ruby_eval</em></a></p>
129
129
  </div>
130
130
  </div>
@@ -133,38 +133,36 @@ ruby_load &quot;expression.rb&quot;
133
133
  </div>
134
134
  </div>
135
135
  </div>
136
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
136
+ <div class="sphinxsidebar">
137
137
  <div class="sphinxsidebarwrapper">
138
138
  <h3><a href="../../index.html">目次</a></h3>
139
139
  <ul>
140
- <li><a class="reference internal" href="#">7.3.28. <code class="docutils literal"><span class="pre">ruby_load</span></code></a><ul>
141
- <li><a class="reference internal" href="#summary">7.3.28.1. 概要</a></li>
142
- <li><a class="reference internal" href="#syntax">7.3.28.2. 構文</a></li>
143
- <li><a class="reference internal" href="#usage">7.3.28.3. 使い方</a></li>
144
- <li><a class="reference internal" href="#parameters">7.3.28.4. 引数</a><ul>
145
- <li><a class="reference internal" href="#path">7.3.28.4.1. <code class="docutils literal"><span class="pre">path</span></code></a></li>
140
+ <li><a class="reference internal" href="#">7.3.32. <tt class="docutils literal"><span class="pre">ruby_load</span></tt></a><ul>
141
+ <li><a class="reference internal" href="#summary">7.3.32.1. 概要</a></li>
142
+ <li><a class="reference internal" href="#syntax">7.3.32.2. 構文</a></li>
143
+ <li><a class="reference internal" href="#usage">7.3.32.3. 使い方</a></li>
144
+ <li><a class="reference internal" href="#parameters">7.3.32.4. 引数</a><ul>
145
+ <li><a class="reference internal" href="#path">7.3.32.4.1. <tt class="docutils literal"><span class="pre">path</span></tt></a></li>
146
146
  </ul>
147
147
  </li>
148
- <li><a class="reference internal" href="#return-value">7.3.28.5. 戻り値</a></li>
149
- <li><a class="reference internal" href="#see-also">7.3.28.6. 参考</a></li>
148
+ <li><a class="reference internal" href="#return-value">7.3.32.5. 戻り値</a></li>
149
+ <li><a class="reference internal" href="#see-also">7.3.32.6. 参考</a></li>
150
150
  </ul>
151
151
  </li>
152
152
  </ul>
153
153
 
154
154
  <h4>前のトピックへ</h4>
155
155
  <p class="topless"><a href="ruby_eval.html"
156
- title="前の章へ">7.3.27. <code class="docutils literal"><span class="pre">ruby_eval</span></code></a></p>
156
+ title="前の章へ">7.3.31. <tt class="docutils literal"><span class="pre">ruby_eval</span></tt></a></p>
157
157
  <h4>次のトピックへ</h4>
158
158
  <p class="topless"><a href="select.html"
159
- title="次の章へ">7.3.29. <code class="docutils literal"><span class="pre">select</span></code></a></p>
160
- <div role="note" aria-label="source link">
161
- <h3>このページ</h3>
162
- <ul class="this-page-menu">
163
- <li><a href="../../_sources/reference/commands/ruby_load.txt"
164
- rel="nofollow">ソースコードを表示</a></li>
165
- </ul>
166
- </div>
167
- <div id="searchbox" style="display: none" role="search">
159
+ title="次の章へ">7.3.33. <tt class="docutils literal"><span class="pre">select</span></tt></a></p>
160
+ <h3>このページ</h3>
161
+ <ul class="this-page-menu">
162
+ <li><a href="../../_sources/reference/commands/ruby_load.txt"
163
+ rel="nofollow">ソースコードを表示</a></li>
164
+ </ul>
165
+ <div id="searchbox" style="display: none">
168
166
  <h3>クイック検索</h3>
169
167
  <form class="search" action="../../search.html" method="get">
170
168
  <input type="text" name="q" />
@@ -181,24 +179,24 @@ ruby_load &quot;expression.rb&quot;
181
179
  </div>
182
180
  <div class="clearer"></div>
183
181
  </div>
184
- <div class="related" role="navigation" aria-label="related navigation">
182
+ <div class="related">
185
183
  <h3>ナビゲーション</h3>
186
184
  <ul>
187
185
  <li class="right" style="margin-right: 10px">
188
186
  <a href="../../genindex.html" title="総合索引"
189
187
  >索引</a></li>
190
188
  <li class="right" >
191
- <a href="select.html" title="7.3.29. select"
189
+ <a href="select.html" title="7.3.33. select"
192
190
  >次へ</a> |</li>
193
191
  <li class="right" >
194
- <a href="ruby_eval.html" title="7.3.27. ruby_eval"
192
+ <a href="ruby_eval.html" title="7.3.31. ruby_eval"
195
193
  >前へ</a> |</li>
196
- <li><a href="../../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
194
+ <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
197
195
  <li><a href="../../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
198
196
  <li><a href="../command.html" >7.3. コマンド</a> &raquo;</li>
199
197
  </ul>
200
198
  </div>
201
- <div class="footer" role="contentinfo">
199
+ <div class="footer">
202
200
  &copy; Copyright 2009-2015, Brazil, Inc.
203
201
  </div>
204
202
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.3.29. select &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>7.3.33. select &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="7.3. コマンド" href="../command.html" />
31
- <link rel="next" title="7.3.30. shutdown" href="shutdown.html" />
32
- <link rel="prev" title="7.3.28. ruby_load" href="ruby_load.html" />
31
+ <link rel="next" title="7.3.34. shutdown" href="shutdown.html" />
32
+ <link rel="prev" title="7.3.32. ruby_load" href="ruby_load.html" />
33
33
  </head>
34
- <body role="document">
34
+ <body>
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../../index.html">
@@ -49,19 +49,19 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related" role="navigation" aria-label="related navigation">
52
+ <div class="related">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
56
56
  <a href="../../genindex.html" title="総合索引"
57
57
  accesskey="I">索引</a></li>
58
58
  <li class="right" >
59
- <a href="shutdown.html" title="7.3.30. shutdown"
59
+ <a href="shutdown.html" title="7.3.34. shutdown"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="ruby_load.html" title="7.3.28. ruby_load"
62
+ <a href="ruby_load.html" title="7.3.32. ruby_load"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
66
66
  <li><a href="../command.html" accesskey="U">7.3. コマンド</a> &raquo;</li>
67
67
  </ul>
@@ -70,18 +70,18 @@
70
70
  <div class="document">
71
71
  <div class="documentwrapper">
72
72
  <div class="bodywrapper">
73
- <div class="body" role="main">
73
+ <div class="body">
74
74
 
75
75
  <div class="section" id="select">
76
- <h1>7.3.29. <code class="docutils literal"><span class="pre">select</span></code><a class="headerlink" href="#select" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
+ <h1>7.3.33. <tt class="docutils literal"><span class="pre">select</span></tt><a class="headerlink" href="#select" title="このヘッドラインへのパーマリンク">¶</a></h1>
77
77
  <div class="section" id="summary">
78
- <h2>7.3.29.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
- <p><code class="docutils literal"><span class="pre">select</span></code> はテーブルから指定された条件にマッチするレコードを検索し、見つかったレコードを出力します。</p>
80
- <p><code class="docutils literal"><span class="pre">select</span></code> は最も重要なgroongaのコマンドです。groongaの力を最大限に活かすためには <code class="docutils literal"><span class="pre">select</span></code> を理解する必要があります。</p>
78
+ <h2>7.3.33.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
+ <p><tt class="docutils literal"><span class="pre">select</span></tt> はテーブルから指定された条件にマッチするレコードを検索し、見つかったレコードを出力します。</p>
80
+ <p><tt class="docutils literal"><span class="pre">select</span></tt> は最も重要なgroongaのコマンドです。groongaの力を最大限に活かすためには <tt class="docutils literal"><span class="pre">select</span></tt> を理解する必要があります。</p>
81
81
  </div>
82
82
  <div class="section" id="syntax">
83
- <h2>7.3.29.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
84
- <p><code class="docutils literal"><span class="pre">select</span></code> には多くの引数があります。必須の引数は <code class="docutils literal"><span class="pre">table</span></code> だけで、残りは省略できます。:</p>
83
+ <h2>7.3.33.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
84
+ <p><tt class="docutils literal"><span class="pre">select</span></tt> には多くの引数があります。必須の引数は <tt class="docutils literal"><span class="pre">table</span></tt> だけで、残りは省略できます。:</p>
85
85
  <div class="highlight-none"><div class="highlight"><pre>select table
86
86
  [match_columns=null]
87
87
  [query=null]
@@ -106,40 +106,40 @@
106
106
  [drilldown_calc_target=null]
107
107
  </pre></div>
108
108
  </div>
109
- <p><code class="docutils literal"><span class="pre">select</span></code> には高度なドリルダウン機能のために以下の名前付き引数があります。</p>
109
+ <p><tt class="docutils literal"><span class="pre">select</span></tt> には高度なドリルダウン機能のために以下の名前付き引数があります。</p>
110
110
  <blockquote>
111
111
  <div><ul class="simple">
112
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys=null</span></code></li>
113
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby=null</span></code></li>
114
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns=&quot;_key,</span> <span class="pre">_nsubrecs&quot;</span></code></li>
115
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset=0</span></code></li>
116
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit=10</span></code></li>
117
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types=NONE</span></code></li>
118
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target=null</span></code></li>
112
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys=null</span></tt></li>
113
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby=null</span></tt></li>
114
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns=&quot;_key,</span> <span class="pre">_nsubrecs&quot;</span></tt></li>
115
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].offset=0</span></tt></li>
116
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].limit=10</span></tt></li>
117
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types=NONE</span></tt></li>
118
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target=null</span></tt></li>
119
119
  </ul>
120
120
  </div></blockquote>
121
- <p><code class="docutils literal"><span class="pre">${LABEL}</span></code> には1つ以上のアルファベット、数字、 <code class="docutils literal"><span class="pre">_</span></code> 、 <code class="docutils literal"><span class="pre">.</span></code> を使うことができます。たとえば、 <code class="docutils literal"><span class="pre">parent.sub1</span></code> は有効な <code class="docutils literal"><span class="pre">${LABEL}</span></code> です。</p>
122
- <p>同じ <code class="docutils literal"><span class="pre">${LABEL}</span></code> も持つ引数は同じグループになります。</p>
121
+ <p><tt class="docutils literal"><span class="pre">${LABEL}</span></tt> には1つ以上のアルファベット、数字、 <tt class="docutils literal"><span class="pre">_</span></tt> 、 <tt class="docutils literal"><span class="pre">.</span></tt> を使うことができます。たとえば、 <tt class="docutils literal"><span class="pre">parent.sub1</span></tt> は有効な <tt class="docutils literal"><span class="pre">${LABEL}</span></tt> です。</p>
122
+ <p>同じ <tt class="docutils literal"><span class="pre">${LABEL}</span></tt> も持つ引数は同じグループになります。</p>
123
123
  <p>たとえば、以下の引数は1つのドリルダウンを指定しています。</p>
124
124
  <blockquote>
125
125
  <div><ul class="simple">
126
- <li><code class="docutils literal"><span class="pre">--drilldown[label].keys</span> <span class="pre">column</span></code></li>
127
- <li><code class="docutils literal"><span class="pre">--drilldown[label].sortby</span> <span class="pre">-_nsubrecs</span></code></li>
126
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label].keys</span> <span class="pre">column</span></tt></li>
127
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label].sortby</span> <span class="pre">-_nsubrecs</span></tt></li>
128
128
  </ul>
129
129
  </div></blockquote>
130
130
  <p>以下の引数は2つのドリルダウンを指定しています。</p>
131
131
  <blockquote>
132
132
  <div><ul class="simple">
133
- <li><code class="docutils literal"><span class="pre">--drilldown[label1].keys</span> <span class="pre">column1</span></code></li>
134
- <li><code class="docutils literal"><span class="pre">--drilldown[label1].sortby</span> <span class="pre">-_nsubrecs</span></code></li>
135
- <li><code class="docutils literal"><span class="pre">--drilldown[label2].keys</span> <span class="pre">column2</span></code></li>
136
- <li><code class="docutils literal"><span class="pre">--drilldown[label2].sortby</span> <span class="pre">_key</span></code></li>
133
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label1].keys</span> <span class="pre">column1</span></tt></li>
134
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label1].sortby</span> <span class="pre">-_nsubrecs</span></tt></li>
135
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label2].keys</span> <span class="pre">column2</span></tt></li>
136
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label2].sortby</span> <span class="pre">_key</span></tt></li>
137
137
  </ul>
138
138
  </div></blockquote>
139
139
  </div>
140
140
  <div class="section" id="usage">
141
- <h2>7.3.29.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
142
- <p>例を使いながら <code class="docutils literal"><span class="pre">select</span></code> の使い方を学びましょう。このセクションではよく使われる使い方を紹介します。</p>
141
+ <h2>7.3.33.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
142
+ <p>例を使いながら <tt class="docutils literal"><span class="pre">select</span></tt> の使い方を学びましょう。このセクションではよく使われる使い方を紹介します。</p>
143
143
  <p>使い方を示すために使うスキーマ定義とサンプルデータは以下の通りです。</p>
144
144
  <p>実行例:</p>
145
145
  <div class="highlight-none"><div class="highlight"><pre>table_create Entries TABLE_HASH_KEY ShortText
@@ -182,12 +182,12 @@ load --table Entries
182
182
  # [[0, 1337566253.89858, 0.000355720520019531], 5]
183
183
  </pre></div>
184
184
  </div>
185
- <p>ブログエントリ用の <code class="docutils literal"><span class="pre">Entries</span></code> テーブルがあります。各エントリはタイトルと内容と「いいね!」数、タグを持っています。タイトルは <code class="docutils literal"><span class="pre">Entries</span></code> のキーとします。内容は <code class="docutils literal"><span class="pre">Entries.content</span></code> カラムの値とします。「いいね!」数は <code class="docutils literal"><span class="pre">Entries.n_likes</span></code> カラムの値とします。タグは <code class="docutils literal"><span class="pre">Entries.tag</span></code> カラムの値とします。</p>
186
- <p><code class="docutils literal"><span class="pre">Entries._key</span></code> カラムと <code class="docutils literal"><span class="pre">Entries.content</span></code> カラムには <code class="docutils literal"><span class="pre">TokenBigram</span></code> トークナイザーを使ったインデックスを作成します。そのため、 <code class="docutils literal"><span class="pre">Entries._key</span></code> と <code class="docutils literal"><span class="pre">Entries.content</span></code> は両方とも全文検索できます。</p>
185
+ <p>ブログエントリ用の <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルがあります。各エントリはタイトルと内容と「いいね!」数、タグを持っています。タイトルは <tt class="docutils literal"><span class="pre">Entries</span></tt> のキーとします。内容は <tt class="docutils literal"><span class="pre">Entries.content</span></tt> カラムの値とします。「いいね!」数は <tt class="docutils literal"><span class="pre">Entries.n_likes</span></tt> カラムの値とします。タグは <tt class="docutils literal"><span class="pre">Entries.tag</span></tt> カラムの値とします。</p>
186
+ <p><tt class="docutils literal"><span class="pre">Entries._key</span></tt> カラムと <tt class="docutils literal"><span class="pre">Entries.content</span></tt> カラムには <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> トークナイザーを使ったインデックスを作成します。そのため、 <tt class="docutils literal"><span class="pre">Entries._key</span></tt> と <tt class="docutils literal"><span class="pre">Entries.content</span></tt> は両方とも全文検索できます。</p>
187
187
  <p>これで例を示すためのスキーマとデータの準備ができました。</p>
188
188
  <div class="section" id="simple-usage">
189
- <h3>7.3.29.3.1. 簡単な使い方<a class="headerlink" href="#simple-usage" title="このヘッドラインへのパーマリンク">¶</a></h3>
190
- <p>上記のスキーマとデータを使った一番簡単な使い方は以下の通りです。これは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルのすべてのレコードを出力します。</p>
189
+ <h3>7.3.33.3.1. 簡単な使い方<a class="headerlink" href="#simple-usage" title="このヘッドラインへのパーマリンク">¶</a></h3>
190
+ <p>上記のスキーマとデータを使った一番簡単な使い方は以下の通りです。これは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルのすべてのレコードを出力します。</p>
191
191
  <p>実行例:</p>
192
192
  <div class="highlight-none"><div class="highlight"><pre>select Entries
193
193
  # [
@@ -263,17 +263,17 @@ load --table Entries
263
263
  # ]
264
264
  </pre></div>
265
265
  </div>
266
- <p>どうしてこのコマンドがすべてのレコードを出力するのでしょうか?理由は2つです。1つ目の理由はこのコマンドが検索条件を何も指定していないからです。検索条件を指定しないとすべてのレコードがマッチします。2つ目の理由は全レコード数が5だからです。 <code class="docutils literal"><span class="pre">select</span></code> コマンドはデフォルトでは最大10レコードを出力します。この例では5レコードしかありません。これは10よりも少ないのですべてのレコードを出力します。</p>
266
+ <p>どうしてこのコマンドがすべてのレコードを出力するのでしょうか?理由は2つです。1つ目の理由はこのコマンドが検索条件を何も指定していないからです。検索条件を指定しないとすべてのレコードがマッチします。2つ目の理由は全レコード数が5だからです。 <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはデフォルトでは最大10レコードを出力します。この例では5レコードしかありません。これは10よりも少ないのですべてのレコードを出力します。</p>
267
267
  </div>
268
268
  <div class="section" id="search-conditions">
269
- <h3>7.3.29.3.2. 検索条件<a class="headerlink" href="#search-conditions" title="このヘッドラインへのパーマリンク">¶</a></h3>
270
- <p>検索条件は <code class="docutils literal"><span class="pre">query</span></code> または <code class="docutils literal"><span class="pre">filter</span></code> で指定します。 <code class="docutils literal"><span class="pre">query</span></code> と <code class="docutils literal"><span class="pre">filter</span></code> を両方指定することもできます。この場合は <code class="docutils literal"><span class="pre">query</span></code> と <code class="docutils literal"><span class="pre">filter</span></code> の両方の条件にマッチしたレコードが出力されます。</p>
269
+ <h3>7.3.33.3.2. 検索条件<a class="headerlink" href="#search-conditions" title="このヘッドラインへのパーマリンク">¶</a></h3>
270
+ <p>検索条件は <tt class="docutils literal"><span class="pre">query</span></tt> または <tt class="docutils literal"><span class="pre">filter</span></tt> で指定します。 <tt class="docutils literal"><span class="pre">query</span></tt> と <tt class="docutils literal"><span class="pre">filter</span></tt> を両方指定することもできます。この場合は <tt class="docutils literal"><span class="pre">query</span></tt> と <tt class="docutils literal"><span class="pre">filter</span></tt> の両方の条件にマッチしたレコードが出力されます。</p>
271
271
  <div class="section" id="search-condition-query">
272
- <h4>7.3.29.3.2.1. 検索条件: <code class="docutils literal"><span class="pre">query</span></code><a class="headerlink" href="#search-condition-query" title="このヘッドラインへのパーマリンク">¶</a></h4>
273
- <p><code class="docutils literal"><span class="pre">query</span></code> はWebページの検索ボックス用に用意されています。例えば、google.co.jpにあるような検索ボックスです。 <code class="docutils literal"><span class="pre">query</span></code> の検索条件はスペース区切りでキーワードを指定します。例えば、 <code class="docutils literal"><span class="pre">検索</span> <span class="pre">エンジン</span></code> は <code class="docutils literal"><span class="pre">検索</span></code> と <code class="docutils literal"><span class="pre">エンジン</span></code> という2つのキーワードを含むレコードを検索します。</p>
274
- <p>通常は <code class="docutils literal"><span class="pre">query</span></code> 引数は全文検索条件を指定するために使います。全文検索条件以外も指定できますが、その用途には <code class="docutils literal"><span class="pre">filter</span></code> 引数の方が向いています。</p>
275
- <p><code class="docutils literal"><span class="pre">query</span></code> 引数で全文検索条件を指定する場合は、 <code class="docutils literal"><span class="pre">match_columns</span></code> 引数と一緒に使います。 <code class="docutils literal"><span class="pre">match_columns</span></code> はどのカラムまたはインデックスを使って <code class="docutils literal"><span class="pre">query</span></code> を検索するかを指定します。</p>
276
- <p>以下は簡単な <code class="docutils literal"><span class="pre">query</span></code> の使用例です。</p>
272
+ <h4>7.3.33.3.2.1. 検索条件: <tt class="docutils literal"><span class="pre">query</span></tt><a class="headerlink" href="#search-condition-query" title="このヘッドラインへのパーマリンク">¶</a></h4>
273
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> はWebページの検索ボックス用に用意されています。例えば、google.co.jpにあるような検索ボックスです。 <tt class="docutils literal"><span class="pre">query</span></tt> の検索条件はスペース区切りでキーワードを指定します。例えば、 <tt class="docutils literal"><span class="pre">検索</span> <span class="pre">エンジン</span></tt> は <tt class="docutils literal"><span class="pre">検索</span></tt> と <tt class="docutils literal"><span class="pre">エンジン</span></tt> という2つのキーワードを含むレコードを検索します。</p>
274
+ <p>通常は <tt class="docutils literal"><span class="pre">query</span></tt> 引数は全文検索条件を指定するために使います。全文検索条件以外も指定できますが、その用途には <tt class="docutils literal"><span class="pre">filter</span></tt> 引数の方が向いています。</p>
275
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> 引数で全文検索条件を指定する場合は、 <tt class="docutils literal"><span class="pre">match_columns</span></tt> 引数と一緒に使います。 <tt class="docutils literal"><span class="pre">match_columns</span></tt> はどのカラムまたはインデックスを使って <tt class="docutils literal"><span class="pre">query</span></tt> を検索するかを指定します。</p>
276
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">query</span></tt> の使用例です。</p>
277
277
  <p>実行例:</p>
278
278
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query fast
279
279
  # [
@@ -328,13 +328,13 @@ load --table Entries
328
328
  # ]
329
329
  </pre></div>
330
330
  </div>
331
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">fast</span></code> を含んでいるレコードを検索します。</p>
332
- <p><code class="docutils literal"><span class="pre">query</span></code> はクエリー構文という構文を使いますが、詳細はここでは説明しません。詳細は <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を参照してください。</p>
331
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">fast</span></tt> を含んでいるレコードを検索します。</p>
332
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> はクエリー構文という構文を使いますが、詳細はここでは説明しません。詳細は <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を参照してください。</p>
333
333
  </div>
334
334
  <div class="section" id="search-condition-filter">
335
- <h4>7.3.29.3.2.2. 検索条件: <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#search-condition-filter" title="このヘッドラインへのパーマリンク">¶</a></h4>
336
- <p><code class="docutils literal"><span class="pre">filter</span></code> は複雑な検索条件を指定するために用意されています。ECMAScriptのような構文で <code class="docutils literal"><span class="pre">filter</span></code> に検索条件を指定します。</p>
337
- <p>以下は簡単な <code class="docutils literal"><span class="pre">filter</span></code> の使用例です。</p>
335
+ <h4>7.3.33.3.2.2. 検索条件: <tt class="docutils literal"><span class="pre">filter</span></tt><a class="headerlink" href="#search-condition-filter" title="このヘッドラインへのパーマリンク">¶</a></h4>
336
+ <p><tt class="docutils literal"><span class="pre">filter</span></tt> は複雑な検索条件を指定するために用意されています。ECMAScriptのような構文で <tt class="docutils literal"><span class="pre">filter</span></tt> に検索条件を指定します。</p>
337
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">filter</span></tt> の使用例です。</p>
338
338
  <p>実行例:</p>
339
339
  <div class="highlight-none"><div class="highlight"><pre>select Entries --filter &#39;content @ &quot;fast&quot; &amp;&amp; _key == &quot;Groonga&quot;&#39;
340
340
  # [
@@ -382,13 +382,13 @@ load --table Entries
382
382
  # ]
383
383
  </pre></div>
384
384
  </div>
385
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中の <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">fast</span></code> という単語を含んでいて、かつ、 <code class="docutils literal"><span class="pre">_key</span></code> が <code class="docutils literal"><span class="pre">Groonga</span></code> のレコードを検索します。このコマンドの中には <code class="docutils literal"><span class="pre">&#64;</span></code> と <code class="docutils literal"><span class="pre">&amp;&amp;</span></code> と <code class="docutils literal"><span class="pre">==</span></code> という3つの演算子があります。 <code class="docutils literal"><span class="pre">&#64;</span></code> は全文検索用の演算子です。 <code class="docutils literal"><span class="pre">&amp;&amp;</span></code> と <code class="docutils literal"><span class="pre">==</span></code> はECMAScriptと同じ意味です。 <code class="docutils literal"><span class="pre">&amp;&amp;</span></code> が論理積用の演算子で <code class="docutils literal"><span class="pre">==</span></code> が等価演算子です。</p>
386
- <p><code class="docutils literal"><span class="pre">filter</span></code> にはもっと演算子や構文があります。例えば、 <code class="docutils literal"><span class="pre">(...)</span></code> を使った検索条件のグループ化などです。しかし、ここでは詳細は説明しません。詳細は <a class="reference internal" href="../grn_expr/script_syntax.html"><em>スクリプト構文</em></a> を参照してください。</p>
385
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中の <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">fast</span></tt> という単語を含んでいて、かつ、 <tt class="docutils literal"><span class="pre">_key</span></tt> が <tt class="docutils literal"><span class="pre">Groonga</span></tt> のレコードを検索します。このコマンドの中には <tt class="docutils literal"><span class="pre">&#64;</span></tt> と <tt class="docutils literal"><span class="pre">&amp;&amp;</span></tt> と <tt class="docutils literal"><span class="pre">==</span></tt> という3つの演算子があります。 <tt class="docutils literal"><span class="pre">&#64;</span></tt> は全文検索用の演算子です。 <tt class="docutils literal"><span class="pre">&amp;&amp;</span></tt> と <tt class="docutils literal"><span class="pre">==</span></tt> はECMAScriptと同じ意味です。 <tt class="docutils literal"><span class="pre">&amp;&amp;</span></tt> が論理積用の演算子で <tt class="docutils literal"><span class="pre">==</span></tt> が等価演算子です。</p>
386
+ <p><tt class="docutils literal"><span class="pre">filter</span></tt> にはもっと演算子や構文があります。例えば、 <tt class="docutils literal"><span class="pre">(...)</span></tt> を使った検索条件のグループ化などです。しかし、ここでは詳細は説明しません。詳細は <a class="reference internal" href="../grn_expr/script_syntax.html"><em>スクリプト構文</em></a> を参照してください。</p>
387
387
  </div>
388
388
  </div>
389
389
  <div class="section" id="paging">
390
- <h3>7.3.29.3.3. ページング<a class="headerlink" href="#paging" title="このヘッドラインへのパーマリンク">¶</a></h3>
391
- <p><code class="docutils literal"><span class="pre">offset</span></code> と <code class="docutils literal"><span class="pre">limit</span></code> を指定することで出力されるレコードの範囲を指定できます。以下は2番目のレコードだけを出力する例です。</p>
390
+ <h3>7.3.33.3.3. ページング<a class="headerlink" href="#paging" title="このヘッドラインへのパーマリンク">¶</a></h3>
391
+ <p><tt class="docutils literal"><span class="pre">offset</span></tt> と <tt class="docutils literal"><span class="pre">limit</span></tt> を指定することで出力されるレコードの範囲を指定できます。以下は2番目のレコードだけを出力する例です。</p>
392
392
  <p>実行例:</p>
393
393
  <div class="highlight-none"><div class="highlight"><pre>select Entries --offset 1 --limit 1
394
394
  # [
@@ -436,12 +436,12 @@ load --table Entries
436
436
  # ]
437
437
  </pre></div>
438
438
  </div>
439
- <p><code class="docutils literal"><span class="pre">offset</span></code> は0始まりです。 <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></code> は2番目以降のレコードを出力するという意味になります。</p>
440
- <p><code class="docutils literal"><span class="pre">limit</span></code> は出力レコード数の最大値を指定します。 <code class="docutils literal"><span class="pre">--limit</span> <span class="pre">1</span></code> は多くても1レコードを出力するという意味になります。もし、1つもレコードがマッチしていなければ <code class="docutils literal"><span class="pre">select</span></code> コマンドはどのレコードも出力しません。</p>
439
+ <p><tt class="docutils literal"><span class="pre">offset</span></tt> は0始まりです。 <tt class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></tt> は2番目以降のレコードを出力するという意味になります。</p>
440
+ <p><tt class="docutils literal"><span class="pre">limit</span></tt> は出力レコード数の最大値を指定します。 <tt class="docutils literal"><span class="pre">--limit</span> <span class="pre">1</span></tt> は多くても1レコードを出力するという意味になります。もし、1つもレコードがマッチしていなければ <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはどのレコードも出力しません。</p>
441
441
  </div>
442
442
  <div class="section" id="the-total-number-of-records">
443
- <h3>7.3.29.3.4. 全レコード数<a class="headerlink" href="#the-total-number-of-records" title="このヘッドラインへのパーマリンク">¶</a></h3>
444
- <p><code class="docutils literal"><span class="pre">--limit</span> <span class="pre">0</span></code> を使うとレコードの内容は取得せずに全レコード数だけを取得できます。</p>
443
+ <h3>7.3.33.3.4. 全レコード数<a class="headerlink" href="#the-total-number-of-records" title="このヘッドラインへのパーマリンク">¶</a></h3>
444
+ <p><tt class="docutils literal"><span class="pre">--limit</span> <span class="pre">0</span></tt> を使うとレコードの内容は取得せずに全レコード数だけを取得できます。</p>
445
445
  <p>実行例:</p>
446
446
  <div class="highlight-none"><div class="highlight"><pre>select Entries --limit 0
447
447
  # [
@@ -482,14 +482,14 @@ load --table Entries
482
482
  # ]
483
483
  </pre></div>
484
484
  </div>
485
- <p><code class="docutils literal"><span class="pre">--limit</span> <span class="pre">0</span></code> はマッチしたレコード数だけを取得したいときにも便利です。</p>
485
+ <p><tt class="docutils literal"><span class="pre">--limit</span> <span class="pre">0</span></tt> はマッチしたレコード数だけを取得したいときにも便利です。</p>
486
486
  </div>
487
487
  <div class="section" id="drilldown">
488
- <h3>7.3.29.3.5. ドリルダウン<a class="headerlink" href="#drilldown" title="このヘッドラインへのパーマリンク">¶</a></h3>
489
- <p>1回の <code class="docutils literal"><span class="pre">select</span></code> で検索結果だけでなく、検索結果をグループ化した結果も一緒に取得できます。SQLでは2回以上 <code class="docutils literal"><span class="pre">SELECT</span></code> を使わなければいけない場合でも、Groongaの場合は1回の <code class="docutils literal"><span class="pre">select</span></code> で実現できます。</p>
488
+ <h3>7.3.33.3.5. ドリルダウン<a class="headerlink" href="#drilldown" title="このヘッドラインへのパーマリンク">¶</a></h3>
489
+ <p>1回の <tt class="docutils literal"><span class="pre">select</span></tt> で検索結果だけでなく、検索結果をグループ化した結果も一緒に取得できます。SQLでは2回以上 <tt class="docutils literal"><span class="pre">SELECT</span></tt> を使わなければいけない場合でも、Groongaの場合は1回の <tt class="docutils literal"><span class="pre">select</span></tt> で実現できます。</p>
490
490
  <p>Groongaではこの機能を <a class="reference external" href="http://en.wikipedia.org/wiki/Drill_down">ドリルダウン</a> と呼んでいます。他の検索エンジンでは <a class="reference external" href="http://en.wikipedia.org/wiki/Faceted_search">ファセット検索</a> とも呼ばれています。</p>
491
491
  <p>例えば、以下の状況を考えてみましょう。</p>
492
- <p><code class="docutils literal"><span class="pre">fast</span></code> という単語を含むエントリーを探します。</p>
492
+ <p><tt class="docutils literal"><span class="pre">fast</span></tt> という単語を含むエントリーを探します。</p>
493
493
  <p>実行例:</p>
494
494
  <div class="highlight-none"><div class="highlight"><pre>select Entries --filter &#39;content @ &quot;fast&quot;&#39;
495
495
  # [
@@ -544,7 +544,7 @@ load --table Entries
544
544
  # ]
545
545
  </pre></div>
546
546
  </div>
547
- <p><code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'content</span> <span class="pre">&#64;</span> <span class="pre">&quot;fast&quot;</span> <span class="pre">&amp;&amp;</span> <span class="pre">tag</span> <span class="pre">==</span> <span class="pre">&quot;???&quot;</span></code> というように、追加の検索条件として <code class="docutils literal"><span class="pre">tag</span></code> を使いたいとします。しかし、 <code class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;fast&quot;</span></code> の結果を見るまでは適切なタグはわかりません。</p>
547
+ <p><tt class="docutils literal"><span class="pre">--filter</span> <span class="pre">'content</span> <span class="pre">&#64;</span> <span class="pre">&quot;fast&quot;</span> <span class="pre">&amp;&amp;</span> <span class="pre">tag</span> <span class="pre">==</span> <span class="pre">&quot;???&quot;</span></tt> というように、追加の検索条件として <tt class="docutils literal"><span class="pre">tag</span></tt> を使いたいとします。しかし、 <tt class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;fast&quot;</span></tt> の結果を見るまでは適切なタグはわかりません。</p>
548
548
  <p>もし、有効なタグそれぞれについてマッチするレコード数がわかれば、その中から適切なタグを選ぶことができます。このような用途のためにドリルダウンを使えます。</p>
549
549
  <p>実行例:</p>
550
550
  <div class="highlight-none"><div class="highlight"><pre>select Entries --filter &#39;content @ &quot;fast&quot;&#39; --drilldown tag
@@ -619,7 +619,7 @@ load --table Entries
619
619
  # ]
620
620
  </pre></div>
621
621
  </div>
622
- <p><code class="docutils literal"><span class="pre">--drilldown</span> <span class="pre">tag</span></code> は「有効なタグ」と「そのタグを持っているレコード数」のペアをリストにして返します。このリストからタグを選ぶと「検索したけどヒット数0」という状況を避けることができます。また、リストの中からレコード数が少ないタグを選べば「検索結果が多すぎる」という状況も避けることができます。</p>
622
+ <p><tt class="docutils literal"><span class="pre">--drilldown</span> <span class="pre">tag</span></tt> は「有効なタグ」と「そのタグを持っているレコード数」のペアをリストにして返します。このリストからタグを選ぶと「検索したけどヒット数0」という状況を避けることができます。また、リストの中からレコード数が少ないタグを選べば「検索結果が多すぎる」という状況も避けることができます。</p>
623
623
  <p>ドリルダウン結果を使うと次のようなUIを作ることができます。</p>
624
624
  <blockquote>
625
625
  <div><ul class="simple">
@@ -632,14 +632,14 @@ load --table Entries
632
632
  </div>
633
633
  </div>
634
634
  <div class="section" id="parameters">
635
- <h2>7.3.29.4. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
635
+ <h2>7.3.33.4. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
636
636
  <p>このセクションではすべての引数について説明します。引数はカテゴリわけしています。</p>
637
637
  <div class="section" id="required-parameter">
638
- <h3>7.3.29.4.1. 必須引数<a class="headerlink" href="#required-parameter" title="このヘッドラインへのパーマリンク">¶</a></h3>
639
- <p><code class="docutils literal"><span class="pre">table</span></code> だけが必須の引数です。</p>
638
+ <h3>7.3.33.4.1. 必須引数<a class="headerlink" href="#required-parameter" title="このヘッドラインへのパーマリンク">¶</a></h3>
639
+ <p><tt class="docutils literal"><span class="pre">table</span></tt> だけが必須の引数です。</p>
640
640
  <div class="section" id="table">
641
- <span id="select-table"></span><h4>7.3.29.4.1.1. <code class="docutils literal"><span class="pre">table</span></code><a class="headerlink" href="#table" title="このヘッドラインへのパーマリンク">¶</a></h4>
642
- <p>検索対象のテーブルを指定します。 <code class="docutils literal"><span class="pre">table</span></code> は必ず指定しなければいけません。</p>
641
+ <span id="select-table"></span><h4>7.3.33.4.1.1. <tt class="docutils literal"><span class="pre">table</span></tt><a class="headerlink" href="#table" title="このヘッドラインへのパーマリンク">¶</a></h4>
642
+ <p>検索対象のテーブルを指定します。 <tt class="docutils literal"><span class="pre">table</span></tt> は必ず指定しなければいけません。</p>
643
643
  <p>存在しないテーブルを指定するとエラーが返ります。</p>
644
644
  <p>実行例:</p>
645
645
  <div class="highlight-none"><div class="highlight"><pre>select Nonexistent
@@ -663,14 +663,14 @@ load --table Entries
663
663
  </div>
664
664
  </div>
665
665
  <div class="section" id="search-related-parameters">
666
- <h3>7.3.29.4.2. 検索関係の引数<a class="headerlink" href="#search-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
667
- <p>検索関係の引数がいくつかあります。一般的には、検索ボックスを実装するために <code class="docutils literal"><span class="pre">match_columns</span></code> と <code class="docutils literal"><span class="pre">query</span></code> 引数を使い、複雑な検索機能を実装するために <code class="docutils literal"><span class="pre">filter</span></code> 引数を使います。</p>
668
- <p><code class="docutils literal"><span class="pre">query</span></code> と <code class="docutils literal"><span class="pre">filter</span></code> を指定した場合は、 <code class="docutils literal"><span class="pre">query</span></code> と <code class="docutils literal"><span class="pre">filter</span></code> にマッチしたレコードが選択されます。 <code class="docutils literal"><span class="pre">query</span></code> と <code class="docutils literal"><span class="pre">filter</span></code> のどちらも指定しなかった場合はすべてのレコードが選択されます。</p>
666
+ <h3>7.3.33.4.2. 検索関係の引数<a class="headerlink" href="#search-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
667
+ <p>検索関係の引数がいくつかあります。一般的には、検索ボックスを実装するために <tt class="docutils literal"><span class="pre">match_columns</span></tt> と <tt class="docutils literal"><span class="pre">query</span></tt> 引数を使い、複雑な検索機能を実装するために <tt class="docutils literal"><span class="pre">filter</span></tt> 引数を使います。</p>
668
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> と <tt class="docutils literal"><span class="pre">filter</span></tt> を指定した場合は、 <tt class="docutils literal"><span class="pre">query</span></tt> と <tt class="docutils literal"><span class="pre">filter</span></tt> にマッチしたレコードが選択されます。 <tt class="docutils literal"><span class="pre">query</span></tt> と <tt class="docutils literal"><span class="pre">filter</span></tt> のどちらも指定しなかった場合はすべてのレコードが選択されます。</p>
669
669
  <div class="section" id="match-columns">
670
- <span id="select-match-columns"></span><h4>7.3.29.4.2.1. <code class="docutils literal"><span class="pre">match_columns</span></code><a class="headerlink" href="#match-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
671
- <p><code class="docutils literal"><span class="pre">query</span></code> 引数の値で全文検索をするときに使うデフォルトの検索対象カラムを指定します。全文検索対象のカラムは <code class="docutils literal"><span class="pre">query</span></code> 引数でも指定できます。検索対象カラムを <code class="docutils literal"><span class="pre">match_columns</span></code> で指定する場合と <code class="docutils literal"><span class="pre">query</span></code> で指定する場合の違いは重みを指定できるかどうかです。 <code class="docutils literal"><span class="pre">match_columns</span></code> では重みを指定できますが、 <code class="docutils literal"><span class="pre">query</span></code> では指定できません。</p>
670
+ <span id="select-match-columns"></span><h4>7.3.33.4.2.1. <tt class="docutils literal"><span class="pre">match_columns</span></tt><a class="headerlink" href="#match-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
671
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> 引数の値で全文検索をするときに使うデフォルトの検索対象カラムを指定します。全文検索対象のカラムは <tt class="docutils literal"><span class="pre">query</span></tt> 引数でも指定できます。検索対象カラムを <tt class="docutils literal"><span class="pre">match_columns</span></tt> で指定する場合と <tt class="docutils literal"><span class="pre">query</span></tt> で指定する場合の違いは重みを指定できるかどうかです。 <tt class="docutils literal"><span class="pre">match_columns</span></tt> では重みを指定できますが、 <tt class="docutils literal"><span class="pre">query</span></tt> では指定できません。</p>
672
672
  <p>重みは検索対象カラムの相対的な重要度です。重みの大きい検索対象カラムでマッチした場合は小さい検索対象カラムでマッチした場合よりも多くのヒットスコアがつきます。デフォルトの重みは1です。</p>
673
- <p>以下は簡単な <code class="docutils literal"><span class="pre">match_columns</span></code> の使用例です。</p>
673
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">match_columns</span></tt> の使用例です。</p>
674
674
  <p>実行例:</p>
675
675
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query fast --output_columns &#39;_key, _score&#39;
676
676
  # [
@@ -707,9 +707,9 @@ load --table Entries
707
707
  # ]
708
708
  </pre></div>
709
709
  </div>
710
- <p><code class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">content</span></code> はデフォルトの全文検索対象カラムに <code class="docutils literal"><span class="pre">content</span></code> カラムを使用し、その重みは1、という意味になります。 <code class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'_key,</span> <span class="pre">_score'</span></code> はこの <code class="docutils literal"><span class="pre">select</span></code> コマンドがマッチしたレコードの <code class="docutils literal"><span class="pre">_key</span></code> の値と <code class="docutils literal"><span class="pre">_score</span></code> の値を出力する、ということを指定しています。</p>
711
- <p><code class="docutils literal"><span class="pre">_score</span></code> の値に注目してください。 <code class="docutils literal"><span class="pre">_score</span></code> の値は <code class="docutils literal"><span class="pre">query</span></code> 引数の値に何個マッチしたかになっています。この例では、 <code class="docutils literal"><span class="pre">query</span></code> 引数の値は <code class="docutils literal"><span class="pre">fast</span></code> です。 <code class="docutils literal"><span class="pre">_score</span></code> の値が1ということは <code class="docutils literal"><span class="pre">content</span></code> カラムの中に <code class="docutils literal"><span class="pre">fast</span></code> が1つだけあるということです。 <code class="docutils literal"><span class="pre">_score</span></code> の値が2ということは <code class="docutils literal"><span class="pre">content</span></code> カラムの中に <code class="docutils literal"><span class="pre">fast</span></code> が2つあるということです。</p>
712
- <p>重みを指定するためには <code class="docutils literal"><span class="pre">column</span> <span class="pre">*</span> <span class="pre">weight</span></code> という構文を使います。以下は重みの使用例です。</p>
710
+ <p><tt class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">content</span></tt> はデフォルトの全文検索対象カラムに <tt class="docutils literal"><span class="pre">content</span></tt> カラムを使用し、その重みは1、という意味になります。 <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'_key,</span> <span class="pre">_score'</span></tt> はこの <tt class="docutils literal"><span class="pre">select</span></tt> コマンドがマッチしたレコードの <tt class="docutils literal"><span class="pre">_key</span></tt> の値と <tt class="docutils literal"><span class="pre">_score</span></tt> の値を出力する、ということを指定しています。</p>
711
+ <p><tt class="docutils literal"><span class="pre">_score</span></tt> の値に注目してください。 <tt class="docutils literal"><span class="pre">_score</span></tt> の値は <tt class="docutils literal"><span class="pre">query</span></tt> 引数の値に何個マッチしたかになっています。この例では、 <tt class="docutils literal"><span class="pre">query</span></tt> 引数の値は <tt class="docutils literal"><span class="pre">fast</span></tt> です。 <tt class="docutils literal"><span class="pre">_score</span></tt> の値が1ということは <tt class="docutils literal"><span class="pre">content</span></tt> カラムの中に <tt class="docutils literal"><span class="pre">fast</span></tt> が1つだけあるということです。 <tt class="docutils literal"><span class="pre">_score</span></tt> の値が2ということは <tt class="docutils literal"><span class="pre">content</span></tt> カラムの中に <tt class="docutils literal"><span class="pre">fast</span></tt> が2つあるということです。</p>
712
+ <p>重みを指定するためには <tt class="docutils literal"><span class="pre">column</span> <span class="pre">*</span> <span class="pre">weight</span></tt> という構文を使います。以下は重みの使用例です。</p>
713
713
  <p>実行例:</p>
714
714
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns &#39;content * 2&#39; --query fast --output_columns &#39;_key, _score&#39;
715
715
  # [
@@ -746,10 +746,10 @@ load --table Entries
746
746
  # ]
747
747
  </pre></div>
748
748
  </div>
749
- <p><code class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">'content</span> <span class="pre">*</span> <span class="pre">2'</span></code> はデフォルトの全文検索用カラムとして <code class="docutils literal"><span class="pre">content</span></code> カラムを使い、その重みは2という意味です。</p>
750
- <p><code class="docutils literal"><span class="pre">_score</span></code> の値に注目してください。 <code class="docutils literal"><span class="pre">_score</span></code> の値が2倍になっています。これは重みを2にしたからです。</p>
751
- <p>デフォルトの全文検索対象カラムとして複数のカラムを指定することができます。複数のカラムを指定した場合はすべてのカラムに対して全文検索が行われ、ヒットスコアが積算されます。つまり、 <code class="docutils literal"><span class="pre">query</span></code> 引数の値がどれか1つでも全文検索対象カラムにマッチしたら、そのレコードはマッチしたものとして扱われます。</p>
752
- <p>複数のカラムを指定するには <code class="docutils literal"><span class="pre">column1</span> <span class="pre">*</span> <span class="pre">weight1</span> <span class="pre">||</span> <span class="pre">column2</span> <span class="pre">*</span> <span class="pre">weight2</span> <span class="pre">||</span> <span class="pre">...</span></code> という構文を使います。 <code class="docutils literal"><span class="pre">*</span> <span class="pre">weight</span></code> は省略することができます。省略した場合は重みが1になります。以下は複数カラムの使用例です。</p>
749
+ <p><tt class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">'content</span> <span class="pre">*</span> <span class="pre">2'</span></tt> はデフォルトの全文検索用カラムとして <tt class="docutils literal"><span class="pre">content</span></tt> カラムを使い、その重みは2という意味です。</p>
750
+ <p><tt class="docutils literal"><span class="pre">_score</span></tt> の値に注目してください。 <tt class="docutils literal"><span class="pre">_score</span></tt> の値が2倍になっています。これは重みを2にしたからです。</p>
751
+ <p>デフォルトの全文検索対象カラムとして複数のカラムを指定することができます。複数のカラムを指定した場合はすべてのカラムに対して全文検索が行われ、ヒットスコアが積算されます。つまり、 <tt class="docutils literal"><span class="pre">query</span></tt> 引数の値がどれか1つでも全文検索対象カラムにマッチしたら、そのレコードはマッチしたものとして扱われます。</p>
752
+ <p>複数のカラムを指定するには <tt class="docutils literal"><span class="pre">column1</span> <span class="pre">*</span> <span class="pre">weight1</span> <span class="pre">||</span> <span class="pre">column2</span> <span class="pre">*</span> <span class="pre">weight2</span> <span class="pre">||</span> <span class="pre">...</span></tt> という構文を使います。 <tt class="docutils literal"><span class="pre">*</span> <span class="pre">weight</span></tt> は省略することができます。省略した場合は重みが1になります。以下は複数カラムの使用例です。</p>
753
753
  <p>実行例:</p>
754
754
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns &#39;_key * 10 || content&#39; --query groonga --output_columns &#39;_key, _score&#39;
755
755
  # [
@@ -782,11 +782,11 @@ load --table Entries
782
782
  # ]
783
783
  </pre></div>
784
784
  </div>
785
- <p><code class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">'_key</span> <span class="pre">*</span> <span class="pre">10</span> <span class="pre">||</span> <span class="pre">content'</span></code> はデフォルト検索対象カラムが <code class="docutils literal"><span class="pre">_key</span></code> カラムと <code class="docutils literal"><span class="pre">content</span></code> カラムで、 <code class="docutils literal"><span class="pre">_key</span></code> カラムの重みは10、 <code class="docutils literal"><span class="pre">content</span></code> カラムの重みは1という意味です。この重み付けは <code class="docutils literal"><span class="pre">_key</span></code> カラムの値は <code class="docutils literal"><span class="pre">content</span></code> カラムの値よりも重要だという意味になります。この例では、ブログエントリのタイトルはブログエントリの内容よりも重要だということです。</p>
785
+ <p><tt class="docutils literal"><span class="pre">--match_columns</span> <span class="pre">'_key</span> <span class="pre">*</span> <span class="pre">10</span> <span class="pre">||</span> <span class="pre">content'</span></tt> はデフォルト検索対象カラムが <tt class="docutils literal"><span class="pre">_key</span></tt> カラムと <tt class="docutils literal"><span class="pre">content</span></tt> カラムで、 <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの重みは10、 <tt class="docutils literal"><span class="pre">content</span></tt> カラムの重みは1という意味です。この重み付けは <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの値は <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値よりも重要だという意味になります。この例では、ブログエントリのタイトルはブログエントリの内容よりも重要だということです。</p>
786
786
  </div>
787
787
  <div class="section" id="query">
788
- <span id="select-query"></span><h4>7.3.29.4.2.2. <code class="docutils literal"><span class="pre">query</span></code><a class="headerlink" href="#query" title="このヘッドラインへのパーマリンク">¶</a></h4>
789
- <p>クエリーテキストを指定します。通常、全文検索をするために <code class="docutils literal"><span class="pre">match_columns</span></code> 引数と一緒に使います。 <code class="docutils literal"><span class="pre">query</span></code> 引数はWebページにある全文検索フォームで使いやすいように設計されています。クエリーテキストは <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> という書式を使います。この書式はGoogleの検索フォームのように一般的な検索フォームと似ています。例えば、 <code class="docutils literal"><span class="pre">word1</span> <span class="pre">word2</span></code> は <code class="docutils literal"><span class="pre">word1</span></code> と <code class="docutils literal"><span class="pre">word2</span></code> を含んでいるレコードを検索するという意味になります。 <code class="docutils literal"><span class="pre">word1</span> <span class="pre">OR</span> <span class="pre">word2</span></code> は <code class="docutils literal"><span class="pre">word1</span></code> または <code class="docutils literal"><span class="pre">word2</span></code> を含んでいるレコードを検索するという意味になります。</p>
788
+ <span id="select-query"></span><h4>7.3.33.4.2.2. <tt class="docutils literal"><span class="pre">query</span></tt><a class="headerlink" href="#query" title="このヘッドラインへのパーマリンク">¶</a></h4>
789
+ <p>クエリーテキストを指定します。通常、全文検索をするために <tt class="docutils literal"><span class="pre">match_columns</span></tt> 引数と一緒に使います。 <tt class="docutils literal"><span class="pre">query</span></tt> 引数はWebページにある全文検索フォームで使いやすいように設計されています。クエリーテキストは <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> という書式を使います。この書式はGoogleの検索フォームのように一般的な検索フォームと似ています。例えば、 <tt class="docutils literal"><span class="pre">word1</span> <span class="pre">word2</span></tt> は <tt class="docutils literal"><span class="pre">word1</span></tt> と <tt class="docutils literal"><span class="pre">word2</span></tt> を含んでいるレコードを検索するという意味になります。 <tt class="docutils literal"><span class="pre">word1</span> <span class="pre">OR</span> <span class="pre">word2</span></tt> は <tt class="docutils literal"><span class="pre">word1</span></tt> または <tt class="docutils literal"><span class="pre">word2</span></tt> を含んでいるレコードを検索するという意味になります。</p>
790
790
  <p>以下は論理積を使った検索の簡単な例です。</p>
791
791
  <p>実行例:</p>
792
792
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query &quot;fast groonga&quot;
@@ -835,7 +835,7 @@ load --table Entries
835
835
  # ]
836
836
  </pre></div>
837
837
  </div>
838
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">fast</span></code> と <code class="docutils literal"><span class="pre">groonga</span></code> の2つの単語を含んでいるレコードを検索します。</p>
838
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">fast</span></tt> と <tt class="docutils literal"><span class="pre">groonga</span></tt> の2つの単語を含んでいるレコードを検索します。</p>
839
839
  <p>以下は論理和を使った検索の簡単な例です。</p>
840
840
  <p>実行例:</p>
841
841
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query &quot;groonga OR mroonga&quot;
@@ -891,9 +891,9 @@ load --table Entries
891
891
  # ]
892
892
  </pre></div>
893
893
  </div>
894
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">fast</span></code> または <code class="docutils literal"><span class="pre">groonga</span></code> のどちらかの単語を含んでいるレコードを検索します。</p>
894
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">fast</span></tt> または <tt class="docutils literal"><span class="pre">groonga</span></tt> のどちらかの単語を含んでいるレコードを検索します。</p>
895
895
  <p>他の構文は <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を参照してください。</p>
896
- <p><code class="docutils literal"><span class="pre">query</span></code> では全文検索だけではなく他の条件も使えます。例えば、 <code class="docutils literal"><span class="pre">column:value</span></code> は <code class="docutils literal"><span class="pre">column</span></code> の値が <code class="docutils literal"><span class="pre">value</span></code> と等しいという意味です。 <code class="docutils literal"><span class="pre">column:&lt;value</span></code> は <code class="docutils literal"><span class="pre">column</span></code> の値が <code class="docutils literal"><span class="pre">value</span></code> より小さいという意味です。</p>
896
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> では全文検索だけではなく他の条件も使えます。例えば、 <tt class="docutils literal"><span class="pre">column:value</span></tt> は <tt class="docutils literal"><span class="pre">column</span></tt> の値が <tt class="docutils literal"><span class="pre">value</span></tt> と等しいという意味です。 <tt class="docutils literal"><span class="pre">column:&lt;value</span></tt> は <tt class="docutils literal"><span class="pre">column</span></tt> の値が <tt class="docutils literal"><span class="pre">value</span></tt> より小さいという意味です。</p>
897
897
  <p>以下は等価演算子を使った検索の簡単な例です。</p>
898
898
  <p>実行例:</p>
899
899
  <div class="highlight-none"><div class="highlight"><pre>select Entries --query _key:Groonga
@@ -942,7 +942,7 @@ load --table Entries
942
942
  # ]
943
943
  </pre></div>
944
944
  </div>
945
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">_key</span></code> カラムの値が <code class="docutils literal"><span class="pre">Groonga</span></code> であるレコードを検索します。</p>
945
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">Groonga</span></tt> であるレコードを検索します。</p>
946
946
  <p>以下は比較演算子を使った検索の簡単な例です。</p>
947
947
  <p>実行例:</p>
948
948
  <div class="highlight-none"><div class="highlight"><pre>select Entries --query n_likes:&lt;11
@@ -1012,13 +1012,13 @@ load --table Entries
1012
1012
  # ]
1013
1013
  </pre></div>
1014
1014
  </div>
1015
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値が <code class="docutils literal"><span class="pre">11</span></code> より小さいレコードを検索します。</p>
1015
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">11</span></tt> より小さいレコードを検索します。</p>
1016
1016
  <p>他の演算子は <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を参照してください。</p>
1017
1017
  </div>
1018
1018
  <div class="section" id="filter">
1019
- <span id="select-filter"></span><h4>7.3.29.4.2.3. <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#filter" title="このヘッドラインへのパーマリンク">¶</a></h4>
1020
- <p>フィルターテキストを指定します。通常、 <code class="docutils literal"><span class="pre">filter</span></code> は複雑な条件を指定するために使います。 <code class="docutils literal"><span class="pre">filter</span></code> は <code class="docutils literal"><span class="pre">query</span></code> 引数と一緒に使うこともできます。 <code class="docutils literal"><span class="pre">filter</span></code> と <code class="docutils literal"><span class="pre">query</span></code> を両方指定した場合はそれらを論理積で組み合わせます。つまり、マッチするレコードは <code class="docutils literal"><span class="pre">filter</span></code> にも <code class="docutils literal"><span class="pre">query</span></code> にもマッチしなければいけないということです。</p>
1021
- <p><code class="docutils literal"><span class="pre">filter</span></code> 引数は複雑な条件用に設計されています。フィルターテキストは <a class="reference internal" href="../grn_expr/script_syntax.html"><em>スクリプト構文</em></a> 書式で指定します。この書式はECMAScriptに似ています。例えば、 <code class="docutils literal"><span class="pre">column</span> <span class="pre">==</span> <span class="pre">&quot;value&quot;</span></code> は <code class="docutils literal"><span class="pre">column</span></code> カラムの値が <code class="docutils literal"><span class="pre">&quot;value&quot;</span></code> と等しいという意味です。 <code class="docutils literal"><span class="pre">column</span> <span class="pre">&lt;</span> <span class="pre">value</span></code> は <code class="docutils literal"><span class="pre">column</span></code> カラムの値が <code class="docutils literal"><span class="pre">value</span></code> よりも小さいという意味です。</p>
1019
+ <span id="select-filter"></span><h4>7.3.33.4.2.3. <tt class="docutils literal"><span class="pre">filter</span></tt><a class="headerlink" href="#filter" title="このヘッドラインへのパーマリンク">¶</a></h4>
1020
+ <p>フィルターテキストを指定します。通常、 <tt class="docutils literal"><span class="pre">filter</span></tt> は複雑な条件を指定するために使います。 <tt class="docutils literal"><span class="pre">filter</span></tt> は <tt class="docutils literal"><span class="pre">query</span></tt> 引数と一緒に使うこともできます。 <tt class="docutils literal"><span class="pre">filter</span></tt> と <tt class="docutils literal"><span class="pre">query</span></tt> を両方指定した場合はそれらを論理積で組み合わせます。つまり、マッチするレコードは <tt class="docutils literal"><span class="pre">filter</span></tt> にも <tt class="docutils literal"><span class="pre">query</span></tt> にもマッチしなければいけないということです。</p>
1021
+ <p><tt class="docutils literal"><span class="pre">filter</span></tt> 引数は複雑な条件用に設計されています。フィルターテキストは <a class="reference internal" href="../grn_expr/script_syntax.html"><em>スクリプト構文</em></a> 書式で指定します。この書式はECMAScriptに似ています。例えば、 <tt class="docutils literal"><span class="pre">column</span> <span class="pre">==</span> <span class="pre">&quot;value&quot;</span></tt> は <tt class="docutils literal"><span class="pre">column</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">&quot;value&quot;</span></tt> と等しいという意味です。 <tt class="docutils literal"><span class="pre">column</span> <span class="pre">&lt;</span> <span class="pre">value</span></tt> は <tt class="docutils literal"><span class="pre">column</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">value</span></tt> よりも小さいという意味です。</p>
1022
1022
  <p>以下は等価演算子を使った検索の簡単な例です。</p>
1023
1023
  <p>実行例:</p>
1024
1024
  <div class="highlight-none"><div class="highlight"><pre>select Entries --filter &#39;_key == &quot;Groonga&quot;&#39;
@@ -1067,7 +1067,7 @@ load --table Entries
1067
1067
  # ]
1068
1068
  </pre></div>
1069
1069
  </div>
1070
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">_key</span></code> カラムの値が <code class="docutils literal"><span class="pre">Groonga</span></code> であるレコードを検索します。</p>
1070
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">Groonga</span></tt> であるレコードを検索します。</p>
1071
1071
  <p>以下は比較演算子を使った検索の簡単な例です。</p>
1072
1072
  <p>実行例:</p>
1073
1073
  <div class="highlight-none"><div class="highlight"><pre>select Entries --filter &#39;n_likes &lt; 11&#39;
@@ -1137,28 +1137,28 @@ load --table Entries
1137
1137
  # ]
1138
1138
  </pre></div>
1139
1139
  </div>
1140
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値が <code class="docutils literal"><span class="pre">11</span></code> より小さいレコードを検索します。</p>
1140
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">11</span></tt> より小さいレコードを検索します。</p>
1141
1141
  <p>他の演算子は <a class="reference internal" href="../grn_expr/script_syntax.html"><em>スクリプト構文</em></a> を参照してください。</p>
1142
1142
  </div>
1143
1143
  </div>
1144
1144
  <div class="section" id="advanced-search-parameters">
1145
- <h3>7.3.29.4.3. 高度な検索のための引数<a class="headerlink" href="#advanced-search-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
1145
+ <h3>7.3.33.4.3. 高度な検索のための引数<a class="headerlink" href="#advanced-search-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
1146
1146
  <div class="section" id="match-escalation-threshold">
1147
- <span id="id2"></span><h4>7.3.29.4.3.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code><a class="headerlink" href="#match-escalation-threshold" title="このヘッドラインへのパーマリンク">¶</a></h4>
1147
+ <span id="id2"></span><h4>7.3.33.4.3.1. <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt><a class="headerlink" href="#match-escalation-threshold" title="このヘッドラインへのパーマリンク">¶</a></h4>
1148
1148
  <p>検索方法をエスカレーションするかどうかを決定するための閾値を指定します。この閾値はマッチしたレコード数との比較に使われます。マッチしたレコード数がこの閾値以下の場合は検索方法をエスカレーションします。検索方法のエスカレーションについては <a class="reference internal" href="../../spec/search.html"><em>検索</em></a> を参照してください。</p>
1149
1149
  <p>デフォルトの閾値は0です。これは1つもレコードがマッチしなかったときだけ検索方法をエスカレーションするということです。</p>
1150
1150
  <p>デフォルトの閾値は以下の方法でカスタマイズできます。</p>
1151
1151
  <blockquote>
1152
1152
  <div><ul class="simple">
1153
- <li><p class="first">configureの <code class="docutils literal"><span class="pre">--with-match-escalation-threshold</span></code> オプション</p>
1153
+ <li><p class="first">configureの <tt class="docutils literal"><span class="pre">--with-match-escalation-threshold</span></tt> オプション</p>
1154
1154
  </li>
1155
- <li><p class="first">groongaコマンドの <code class="docutils literal"><span class="pre">--match-escalation-threshold</span></code> オプション</p>
1155
+ <li><p class="first">groongaコマンドの <tt class="docutils literal"><span class="pre">--match-escalation-threshold</span></tt> オプション</p>
1156
1156
  </li>
1157
- <li><p class="first">設定ファイルの <code class="docutils literal"><span class="pre">match-escalation-threshold</span></code> 設定項目</p>
1157
+ <li><p class="first">設定ファイルの <tt class="docutils literal"><span class="pre">match-escalation-threshold</span></tt> 設定項目</p>
1158
1158
  </li>
1159
1159
  </ul>
1160
1160
  </div></blockquote>
1161
- <p>以下は簡単な <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code> の使用例です。最初の <code class="docutils literal"><span class="pre">select</span></code> は <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code> 引数がありません。2番目の <code class="docutils literal"><span class="pre">select</span></code> は <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code> 引数があります。</p>
1161
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> の使用例です。最初の <tt class="docutils literal"><span class="pre">select</span></tt> は <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> 引数がありません。2番目の <tt class="docutils literal"><span class="pre">select</span></tt> は <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> 引数があります。</p>
1162
1162
  <p>実行例:</p>
1163
1163
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query groo
1164
1164
  # [
@@ -1243,32 +1243,32 @@ select Entries --match_columns content --query groo --match_escalation_threshold
1243
1243
  # ]
1244
1244
  </pre></div>
1245
1245
  </div>
1246
- <p>最初の <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルから <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">groo</span></code> という単語を含むレコードを検索します。しかし、この検索ではどのレコードにもマッチしません。これは、 <code class="docutils literal"><span class="pre">TokenBigram</span></code> トークナイザーは <code class="docutils literal"><span class="pre">groonga</span></code> を <code class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></code> ではなく <code class="docutils literal"><span class="pre">groonga</span></code> にトークナイズするからです。( <code class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></code> は <code class="docutils literal"><span class="pre">groonga</span></code> を <code class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></code> にトークナイズします。詳細は <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> を見てください。)つまり、 <code class="docutils literal"><span class="pre">groonga</span></code> はインデックスに登録されていますが、 <code class="docutils literal"><span class="pre">groo</span></code> はインデックスに登録されていないということです。インデックスに登録されていないので完全一致検索では <code class="docutils literal"><span class="pre">groo</span></code> はどのレコードにもマッチしません。このケースでは検索方法のエスカレーションが行われています。なぜならばマッチしたレコード数(0)が <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code> (0)の値と等しいからです。非分かち書き検索では <code class="docutils literal"><span class="pre">groo</span></code> で1つのレコードがマッチします。</p>
1247
- <p>2番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドも <code class="docutils literal"><span class="pre">Entries</span></code> テーブルから <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">groo</span></code> という単語を含むレコードを検索します。そして、この <code class="docutils literal"><span class="pre">select</span></code> コマンドもマッチしません。この場合、マッチしたレコード数(0)が <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code> (-1)より大きいので、検索方法をエスカレーションしません。そして、1つもレコードがマッチしません。</p>
1246
+ <p>最初の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルから <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">groo</span></tt> という単語を含むレコードを検索します。しかし、この検索ではどのレコードにもマッチしません。これは、 <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> トークナイザーは <tt class="docutils literal"><span class="pre">groonga</span></tt> を <tt class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></tt> ではなく <tt class="docutils literal"><span class="pre">groonga</span></tt> にトークナイズするからです。( <tt class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></tt> は <tt class="docutils literal"><span class="pre">groonga</span></tt> を <tt class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></tt> にトークナイズします。詳細は <a class="reference internal" href="../tokenizers.html"><em>トークナイザー</em></a> を見てください。)つまり、 <tt class="docutils literal"><span class="pre">groonga</span></tt> はインデックスに登録されていますが、 <tt class="docutils literal"><span class="pre">groo</span></tt> はインデックスに登録されていないということです。インデックスに登録されていないので完全一致検索では <tt class="docutils literal"><span class="pre">groo</span></tt> はどのレコードにもマッチしません。このケースでは検索方法のエスカレーションが行われています。なぜならばマッチしたレコード数(0)が <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> (0)の値と等しいからです。非分かち書き検索では <tt class="docutils literal"><span class="pre">groo</span></tt> で1つのレコードがマッチします。</p>
1247
+ <p>2番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドも <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルから <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">groo</span></tt> という単語を含むレコードを検索します。そして、この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドもマッチしません。この場合、マッチしたレコード数(0)が <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt> (-1)より大きいので、検索方法をエスカレーションしません。そして、1つもレコードがマッチしません。</p>
1248
1248
  </div>
1249
1249
  <div class="section" id="query-expansion">
1250
- <span id="id3"></span><h4>7.3.29.4.3.2. <code class="docutils literal"><span class="pre">query_expansion</span></code><a class="headerlink" href="#query-expansion" title="このヘッドラインへのパーマリンク">¶</a></h4>
1250
+ <span id="id3"></span><h4>7.3.33.4.3.2. <tt class="docutils literal"><span class="pre">query_expansion</span></tt><a class="headerlink" href="#query-expansion" title="このヘッドラインへのパーマリンク">¶</a></h4>
1251
1251
  <p>Deprecated. Use <a class="reference internal" href="#query-expander"><em>query_expander</em></a> instead.</p>
1252
1252
  </div>
1253
1253
  <div class="section" id="query-flags">
1254
- <span id="id4"></span><h4>7.3.29.4.3.3. <code class="docutils literal"><span class="pre">query_flags</span></code><a class="headerlink" href="#query-flags" title="このヘッドラインへのパーマリンク">¶</a></h4>
1255
- <p><code class="docutils literal"><span class="pre">query</span></code> パラメーターの構文をカスタマイズします。デフォルトでは <code class="docutils literal"><span class="pre">query</span></code> パラメーターでカラムの値を更新することはできません。しかし、 <code class="docutils literal"><span class="pre">query_flags</span></code> に <code class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></code> を指定することで <code class="docutils literal"><span class="pre">query</span></code> でカラムの値を更新することができます。</p>
1254
+ <span id="id4"></span><h4>7.3.33.4.3.3. <tt class="docutils literal"><span class="pre">query_flags</span></tt><a class="headerlink" href="#query-flags" title="このヘッドラインへのパーマリンク">¶</a></h4>
1255
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> パラメーターの構文をカスタマイズします。デフォルトでは <tt class="docutils literal"><span class="pre">query</span></tt> パラメーターでカラムの値を更新することはできません。しかし、 <tt class="docutils literal"><span class="pre">query_flags</span></tt> に <tt class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></tt> を指定することで <tt class="docutils literal"><span class="pre">query</span></tt> でカラムの値を更新することができます。</p>
1256
1256
  <p>指定可能な値は以下の通りです。</p>
1257
1257
  <ul class="simple">
1258
- <li><code class="docutils literal"><span class="pre">ALLOW_PRAGMA</span></code></li>
1259
- <li><code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code></li>
1260
- <li><code class="docutils literal"><span class="pre">ALLOW_UPDATE</span></code></li>
1261
- <li><code class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></code></li>
1262
- <li><code class="docutils literal"><span class="pre">NONE</span></code></li>
1258
+ <li><tt class="docutils literal"><span class="pre">ALLOW_PRAGMA</span></tt></li>
1259
+ <li><tt class="docutils literal"><span class="pre">ALLOW_COLUMN</span></tt></li>
1260
+ <li><tt class="docutils literal"><span class="pre">ALLOW_UPDATE</span></tt></li>
1261
+ <li><tt class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></tt></li>
1262
+ <li><tt class="docutils literal"><span class="pre">NONE</span></tt></li>
1263
1263
  </ul>
1264
- <p><code class="docutils literal"><span class="pre">ALLOW_PRAGMA</span></code> を指定すると <code class="docutils literal"><span class="pre">query</span></code> の先頭でプラグマを指定することができます。この機能はまだ実装されていません。</p>
1265
- <p><code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code> を指定すると <code class="docutils literal"><span class="pre">match_columns</span></code> で指定していないカラムでも検索できるように成ります。カラムを指定するには <code class="docutils literal"><span class="pre">COLUMN:...</span></code> というような構文を使います。</p>
1266
- <p><code class="docutils literal"><span class="pre">ALLOW_UPDATE</span></code> を指定すると <code class="docutils literal"><span class="pre">COLUMN:=NEW_VALUE</span></code> という構文を使って <code class="docutils literal"><span class="pre">query</span></code> でカラムの値を更新できます。カラム更新用の構文ではカラムを指定する必要があるため、 <code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code> も一緒に指定する必要があります。</p>
1267
- <p><code class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></code> を指定すると <code class="docutils literal"><span class="pre">-WORD</span></code> という構文を使って最初の条件として否定条件を指定できます。このクエリーは <code class="docutils literal"><span class="pre">WORD</span></code> にマッチしないレコードを検索します。最初の条件に否定条件を使ったクエリーは多くの場合重いクエリーになります。これは多くのレコードにマッチするからです。そのため、このフラグはデフォルトでは無効になっています。もし、このフラグを使う場合は重いクエリーとなるということを十分気をつけてください。</p>
1268
- <p><code class="docutils literal"><span class="pre">NONE</span></code> は単に無視されます。フラグを指定しないときに <code class="docutils literal"><span class="pre">NONE</span></code> を使えます。</p>
1269
- <p>これらのフラグは <code class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></code> のように <code class="docutils literal"><span class="pre">|</span></code> で区切って同時に指定することができます。</p>
1270
- <p>デフォルト値は <code class="docutils literal"><span class="pre">ALLOW_PRAGMA|ALLOW_COLUMN</span></code> です。</p>
1271
- <p>以下は <code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code> の使用例です。</p>
1264
+ <p><tt class="docutils literal"><span class="pre">ALLOW_PRAGMA</span></tt> を指定すると <tt class="docutils literal"><span class="pre">query</span></tt> の先頭でプラグマを指定することができます。この機能はまだ実装されていません。</p>
1265
+ <p><tt class="docutils literal"><span class="pre">ALLOW_COLUMN</span></tt> を指定すると <tt class="docutils literal"><span class="pre">match_columns</span></tt> で指定していないカラムでも検索できるように成ります。カラムを指定するには <tt class="docutils literal"><span class="pre">COLUMN:...</span></tt> というような構文を使います。</p>
1266
+ <p><tt class="docutils literal"><span class="pre">ALLOW_UPDATE</span></tt> を指定すると <tt class="docutils literal"><span class="pre">COLUMN:=NEW_VALUE</span></tt> という構文を使って <tt class="docutils literal"><span class="pre">query</span></tt> でカラムの値を更新できます。カラム更新用の構文ではカラムを指定する必要があるため、 <tt class="docutils literal"><span class="pre">ALLOW_COLUMN</span></tt> も一緒に指定する必要があります。</p>
1267
+ <p><tt class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></tt> を指定すると <tt class="docutils literal"><span class="pre">-WORD</span></tt> という構文を使って最初の条件として否定条件を指定できます。このクエリーは <tt class="docutils literal"><span class="pre">WORD</span></tt> にマッチしないレコードを検索します。最初の条件に否定条件を使ったクエリーは多くの場合重いクエリーになります。これは多くのレコードにマッチするからです。そのため、このフラグはデフォルトでは無効になっています。もし、このフラグを使う場合は重いクエリーとなるということを十分気をつけてください。</p>
1268
+ <p><tt class="docutils literal"><span class="pre">NONE</span></tt> は単に無視されます。フラグを指定しないときに <tt class="docutils literal"><span class="pre">NONE</span></tt> を使えます。</p>
1269
+ <p>これらのフラグは <tt class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></tt> のように <tt class="docutils literal"><span class="pre">|</span></tt> で区切って同時に指定することができます。</p>
1270
+ <p>デフォルト値は <tt class="docutils literal"><span class="pre">ALLOW_PRAGMA|ALLOW_COLUMN</span></tt> です。</p>
1271
+ <p>以下は <tt class="docutils literal"><span class="pre">ALLOW_COLUMN</span></tt> の使用例です。</p>
1272
1272
  <p>実行例:</p>
1273
1273
  <div class="highlight-none"><div class="highlight"><pre>select Entries --query content:@mroonga --query_flags ALLOW_COLUMN
1274
1274
  # [
@@ -1316,8 +1316,8 @@ select Entries --match_columns content --query groo --match_escalation_threshold
1316
1316
  # ]
1317
1317
  </pre></div>
1318
1318
  </div>
1319
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">mroonga</span></code> を含んでいるレコードを検索します。</p>
1320
- <p>以下は <code class="docutils literal"><span class="pre">ALLOW_UPDATE</span></code> の使用例です。</p>
1319
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">mroonga</span></tt> を含んでいるレコードを検索します。</p>
1320
+ <p>以下は <tt class="docutils literal"><span class="pre">ALLOW_UPDATE</span></tt> の使用例です。</p>
1321
1321
  <p>実行例:</p>
1322
1322
  <div class="highlight-none"><div class="highlight"><pre>table_create Users TABLE_HASH_KEY ShortText
1323
1323
  # [[0, 1337566253.89858, 0.000355720520019531], true]
@@ -1409,8 +1409,8 @@ select Users
1409
1409
  # ]
1410
1410
  </pre></div>
1411
1411
  </div>
1412
- <p>最初の <code class="docutils literal"><span class="pre">select</span></code> コマンドは全てのレコードの <code class="docutils literal"><span class="pre">age</span></code> カラムの値を <code class="docutils literal"><span class="pre">19</span></code> にします。二番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">age</span></code> カラムの値を出力します。</p>
1413
- <p>以下は <code class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></code> の使用例です。</p>
1412
+ <p>最初の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは全てのレコードの <tt class="docutils literal"><span class="pre">age</span></tt> カラムの値を <tt class="docutils literal"><span class="pre">19</span></tt> にします。二番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">age</span></tt> カラムの値を出力します。</p>
1413
+ <p>以下は <tt class="docutils literal"><span class="pre">ALLOW_LEADING_NOT</span></tt> の使用例です。</p>
1414
1414
  <p>実行例:</p>
1415
1415
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query -mroonga --query_flags ALLOW_LEADING_NOT
1416
1416
  # [
@@ -1479,8 +1479,8 @@ select Users
1479
1479
  # ]
1480
1480
  </pre></div>
1481
1481
  </div>
1482
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">mroonga</span></code> を含んでいないレコードを検索します。</p>
1483
- <p>以下は <code class="docutils literal"><span class="pre">NONE</span></code> の使用例です。</p>
1482
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">mroonga</span></tt> を含んでいないレコードを検索します。</p>
1483
+ <p>以下は <tt class="docutils literal"><span class="pre">NONE</span></tt> の使用例です。</p>
1484
1484
  <p>実行例:</p>
1485
1485
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query &#39;mroonga OR _key:Groonga&#39; --query_flags NONE
1486
1486
  # [
@@ -1528,17 +1528,17 @@ select Users
1528
1528
  # ]
1529
1529
  </pre></div>
1530
1530
  </div>
1531
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">content</span></code> カラムの値に <code class="docutils literal"><span class="pre">mroonga</span></code> または <code class="docutils literal"><span class="pre">_key:Groonga</span></code> のどちらかの単語を含んでいるレコードを検索します。 <code class="docutils literal"><span class="pre">_key:Groonga</span></code> が <code class="docutils literal"><span class="pre">_key</span></code> カラムの値が <code class="docutils literal"><span class="pre">Groonga</span></code> という条件にはならないことに注意してください。これは <code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code> フラグが指定されていないからです。</p>
1531
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">content</span></tt> カラムの値に <tt class="docutils literal"><span class="pre">mroonga</span></tt> または <tt class="docutils literal"><span class="pre">_key:Groonga</span></tt> のどちらかの単語を含んでいるレコードを検索します。 <tt class="docutils literal"><span class="pre">_key:Groonga</span></tt> が <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">Groonga</span></tt> という条件にはならないことに注意してください。これは <tt class="docutils literal"><span class="pre">ALLOW_COLUMN</span></tt> フラグが指定されていないからです。</p>
1532
1532
  <p><a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> も見てください。</p>
1533
1533
  </div>
1534
1534
  <div class="section" id="query-expander">
1535
- <span id="id5"></span><h4>7.3.29.4.3.4. <code class="docutils literal"><span class="pre">query_expander</span></code><a class="headerlink" href="#query-expander" title="このヘッドラインへのパーマリンク">¶</a></h4>
1535
+ <span id="id5"></span><h4>7.3.33.4.3.4. <tt class="docutils literal"><span class="pre">query_expander</span></tt><a class="headerlink" href="#query-expander" title="このヘッドラインへのパーマリンク">¶</a></h4>
1536
1536
  <p>クエリー展開用の引数です。クエリー展開はクエリー中の特定の単語を別の単語に置換します。通常は類義語検索に使います。</p>
1537
- <p><code class="docutils literal"><span class="pre">query</span></code> 引数の値を置換するために使うカラムを指定します。この引数の値の書式は「 <code class="docutils literal"><span class="pre">${TABLE}.${COLUMN}</span></code> 」です。例えば、 「 <code class="docutils literal"><span class="pre">Terms.synonym</span></code> 」は <code class="docutils literal"><span class="pre">Terms</span></code> テーブルの <code class="docutils literal"><span class="pre">synonym</span></code> カラムを指定しています。</p>
1538
- <p>クエリー展開用のテーブルを「置換テーブル」と呼びます。置換テーブルのキーは <code class="docutils literal"><span class="pre">ShortText</span></code> にしてください。そのため、配列テーブル( <code class="docutils literal"><span class="pre">TABLE_NO_KEY</span></code> )は置換テーブルに使うことはできません。なぜなら、配列テーブルにはキーがないからです。</p>
1539
- <p>クエリー展開用のカラムを「置換カラム」と呼びます。置換カラムの値の型は <code class="docutils literal"><span class="pre">ShortText</span></code> にしてください。カラムの種類はベクター( <code class="docutils literal"><span class="pre">COLUMN_VECTOR</span></code> )にしてください。</p>
1540
- <p>クエリー展開はクエリーの中にある置換テーブルのキーを置換カラムの値で置換します。 <code class="docutils literal"><span class="pre">query</span></code> の中にある単語が置換テーブルのキーだったら、キーに対応する置換カラムの値でその単語を置換します。置換は再帰的に実行しません。これは、置換されたクエリー内に置換対象の単語があっても置換されないということです。</p>
1541
- <p>以下は <code class="docutils literal"><span class="pre">query_expander</span></code> の簡単な使用例を示すためのサンプル置換テーブルです。</p>
1537
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> 引数の値を置換するために使うカラムを指定します。この引数の値の書式は「 <tt class="docutils literal"><span class="pre">${TABLE}.${COLUMN}</span></tt> 」です。例えば、 「 <tt class="docutils literal"><span class="pre">Terms.synonym</span></tt> 」は <tt class="docutils literal"><span class="pre">Terms</span></tt> テーブルの <tt class="docutils literal"><span class="pre">synonym</span></tt> カラムを指定しています。</p>
1538
+ <p>クエリー展開用のテーブルを「置換テーブル」と呼びます。置換テーブルのキーは <tt class="docutils literal"><span class="pre">ShortText</span></tt> にしてください。そのため、配列テーブル( <tt class="docutils literal"><span class="pre">TABLE_NO_KEY</span></tt> )は置換テーブルに使うことはできません。なぜなら、配列テーブルにはキーがないからです。</p>
1539
+ <p>クエリー展開用のカラムを「置換カラム」と呼びます。置換カラムの値の型は <tt class="docutils literal"><span class="pre">ShortText</span></tt> にしてください。カラムの種類はベクター( <tt class="docutils literal"><span class="pre">COLUMN_VECTOR</span></tt> )にしてください。</p>
1540
+ <p>クエリー展開はクエリーの中にある置換テーブルのキーを置換カラムの値で置換します。 <tt class="docutils literal"><span class="pre">query</span></tt> の中にある単語が置換テーブルのキーだったら、キーに対応する置換カラムの値でその単語を置換します。置換は再帰的に実行しません。これは、置換されたクエリー内に置換対象の単語があっても置換されないということです。</p>
1541
+ <p>以下は <tt class="docutils literal"><span class="pre">query_expander</span></tt> の簡単な使用例を示すためのサンプル置換テーブルです。</p>
1542
1542
  <p>実行例:</p>
1543
1543
  <div class="highlight-none"><div class="highlight"><pre>table_create Thesaurus TABLE_PAT_KEY|KEY_NORMALIZE ShortText
1544
1544
  # [[0, 1337566253.89858, 0.000355720520019531], true]
@@ -1552,9 +1552,9 @@ load --table Thesaurus
1552
1552
  # [[0, 1337566253.89858, 0.000355720520019531], 2]
1553
1553
  </pre></div>
1554
1554
  </div>
1555
- <p><code class="docutils literal"><span class="pre">Thesaurus</span></code> 置換テーブルは2つの類義語があります。 <code class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></code> と <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> です。ユーザが <code class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></code> で検索すると、groongaは <code class="docutils literal"><span class="pre">&quot;((mroonga)</span> <span class="pre">OR</span> <span class="pre">(tritonn)</span> <span class="pre">OR</span> <span class="pre">(groonga</span> <span class="pre">mysql))&quot;</span></code> で検索します。ユーザーが <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> で検索すると、groongaは <code class="docutils literal"><span class="pre">&quot;((groonga)</span> <span class="pre">OR</span> <span class="pre">(senna))&quot;</span></code> で検索します。通常、置換テーブルには <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> フラグをつけた方がよいです。このフラグを使うと、置換対象の単語が大文字小文字区別せずにマッチするようになります。</p>
1556
- <p>これらの類義語の値の中に <code class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></code> や <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> といったキーの値も含まれていることに注意してください。このように類義語にキーの値も含めることを推奨します。もしキーの値を含めないと、置換した値には元の置換対象の値が含まれません。通常、元の値が含まれていた方がよい検索結果になります。もし、検索してほしくない単語がある場合は、元の単語を含めないでください。例えば、空のベクター値を指定することで「ストップワード」機能を実現することもできます。</p>
1557
- <p>以下は簡単な <code class="docutils literal"><span class="pre">query_expander</span></code> の使用例です。</p>
1555
+ <p><tt class="docutils literal"><span class="pre">Thesaurus</span></tt> 置換テーブルは2つの類義語があります。 <tt class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></tt> と <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> です。ユーザが <tt class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></tt> で検索すると、groongaは <tt class="docutils literal"><span class="pre">&quot;((mroonga)</span> <span class="pre">OR</span> <span class="pre">(tritonn)</span> <span class="pre">OR</span> <span class="pre">(groonga</span> <span class="pre">mysql))&quot;</span></tt> で検索します。ユーザーが <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> で検索すると、groongaは <tt class="docutils literal"><span class="pre">&quot;((groonga)</span> <span class="pre">OR</span> <span class="pre">(senna))&quot;</span></tt> で検索します。通常、置換テーブルには <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> フラグをつけた方がよいです。このフラグを使うと、置換対象の単語が大文字小文字区別せずにマッチするようになります。</p>
1556
+ <p>これらの類義語の値の中に <tt class="docutils literal"><span class="pre">&quot;mroonga&quot;</span></tt> や <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> といったキーの値も含まれていることに注意してください。このように類義語にキーの値も含めることを推奨します。もしキーの値を含めないと、置換した値には元の置換対象の値が含まれません。通常、元の値が含まれていた方がよい検索結果になります。もし、検索してほしくない単語がある場合は、元の単語を含めないでください。例えば、空のベクター値を指定することで「ストップワード」機能を実現することもできます。</p>
1557
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">query_expander</span></tt> の使用例です。</p>
1558
1558
  <p>実行例:</p>
1559
1559
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query &quot;mroonga&quot;
1560
1560
  # [
@@ -1704,8 +1704,8 @@ select Entries --match_columns content --query &quot;((mroonga) OR (tritonn) OR
1704
1704
  # ]
1705
1705
  </pre></div>
1706
1706
  </div>
1707
- <p>最初の <code class="docutils literal"><span class="pre">select</span></code> コマンドはクエリー展開を使いません。そのため、 <code class="docutils literal"><span class="pre">&quot;tritonn&quot;</span></code> という単語を含んでいるレコードは見つかりません。2番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドはクエリー展開を使っています。そのため、 <code class="docutils literal"><span class="pre">&quot;tritonn&quot;</span></code> という単語を含んでいるレコードが見つかります。3番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドはクエリー展開を使っていませんが、2番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドと同じ結果になります。これは、3番目の <code class="docutils literal"><span class="pre">select</span></code> コマンドは展開後のクエリーを使っているからです。</p>
1708
- <p>それぞれの置換する値は <code class="docutils literal"><span class="pre">(...)</span></code> や <code class="docutils literal"><span class="pre">OR</span></code> といった <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を使えます。これらの構文を使うことにより複雑な置換をすることができます。</p>
1707
+ <p>最初の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはクエリー展開を使いません。そのため、 <tt class="docutils literal"><span class="pre">&quot;tritonn&quot;</span></tt> という単語を含んでいるレコードは見つかりません。2番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはクエリー展開を使っています。そのため、 <tt class="docutils literal"><span class="pre">&quot;tritonn&quot;</span></tt> という単語を含んでいるレコードが見つかります。3番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはクエリー展開を使っていませんが、2番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドと同じ結果になります。これは、3番目の <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは展開後のクエリーを使っているからです。</p>
1708
+ <p>それぞれの置換する値は <tt class="docutils literal"><span class="pre">(...)</span></tt> や <tt class="docutils literal"><span class="pre">OR</span></tt> といった <a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a> を使えます。これらの構文を使うことにより複雑な置換をすることができます。</p>
1709
1709
  <p>以下はクエリー構文を使った複雑な置換の使用例です。</p>
1710
1710
  <p>実行例:</p>
1711
1711
  <div class="highlight-none"><div class="highlight"><pre>load --table Thesaurus
@@ -1766,16 +1766,16 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
1766
1766
  # ]
1767
1767
  </pre></div>
1768
1768
  </div>
1769
- <p>この <code class="docutils literal"><span class="pre">load</span></code> コマンドは新しく <code class="docutils literal"><span class="pre">&quot;popular&quot;</span></code> という類義語を登録しています。これは <code class="docutils literal"><span class="pre">((popular)</span> <span class="pre">OR</span> <span class="pre">(n_likes:&gt;=10))</span></code> に置換されます。置換されたクエリーは、「popular」というのは「popular」という単語を含んでいるか10以上の「いいね!」数を持つエントリという意味になります。</p>
1770
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">Entries</span></code> テーブルの中から <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値が <code class="docutils literal"><span class="pre">10</span></code> 以上のレコードを出力します。</p>
1769
+ <p>この <tt class="docutils literal"><span class="pre">load</span></tt> コマンドは新しく <tt class="docutils literal"><span class="pre">&quot;popular&quot;</span></tt> という類義語を登録しています。これは <tt class="docutils literal"><span class="pre">((popular)</span> <span class="pre">OR</span> <span class="pre">(n_likes:&gt;=10))</span></tt> に置換されます。置換されたクエリーは、「popular」というのは「popular」という単語を含んでいるか10以上の「いいね!」数を持つエントリという意味になります。</p>
1770
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">Entries</span></tt> テーブルの中から <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値が <tt class="docutils literal"><span class="pre">10</span></tt> 以上のレコードを出力します。</p>
1771
1771
  </div>
1772
1772
  </div>
1773
1773
  <div class="section" id="output-related-parameters">
1774
- <h3>7.3.29.4.4. 出力関連の引数<a class="headerlink" href="#output-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
1774
+ <h3>7.3.33.4.4. 出力関連の引数<a class="headerlink" href="#output-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
1775
1775
  <div class="section" id="output-columns">
1776
- <span id="select-output-columns"></span><h4>7.3.29.4.4.1. <code class="docutils literal"><span class="pre">output_columns</span></code><a class="headerlink" href="#output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
1777
- <p>出力するカラムを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。</p>
1778
- <p>以下は簡単な <code class="docutils literal"><span class="pre">output_columns</span></code> の使用例です。</p>
1776
+ <span id="select-output-columns"></span><h4>7.3.33.4.4.1. <tt class="docutils literal"><span class="pre">output_columns</span></tt><a class="headerlink" href="#output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
1777
+ <p>出力するカラムを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。</p>
1778
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">output_columns</span></tt> の使用例です。</p>
1779
1779
  <p>実行例:</p>
1780
1780
  <div class="highlight-none"><div class="highlight"><pre>select Entries --output_columns &#39;_id, _key&#39; --limit 1
1781
1781
  # [
@@ -1808,10 +1808,10 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
1808
1808
  # ]
1809
1809
  </pre></div>
1810
1810
  </div>
1811
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">_id</span></code> と <code class="docutils literal"><span class="pre">_key</span></code> カラムの値だけを出力します。</p>
1812
- <p><code class="docutils literal"><span class="pre">*</span></code> is a special value. It means that all columns that are not
1811
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">_id</span></tt> と <tt class="docutils literal"><span class="pre">_key</span></tt> カラムの値だけを出力します。</p>
1812
+ <p><tt class="docutils literal"><span class="pre">*</span></tt> is a special value. It means that all columns that are not
1813
1813
  <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a>.</p>
1814
- <p>以下は <code class="docutils literal"><span class="pre">*</span></code> の使用例です。</p>
1814
+ <p>以下は <tt class="docutils literal"><span class="pre">*</span></tt> の使用例です。</p>
1815
1815
  <p>実行例:</p>
1816
1816
  <div class="highlight-none"><div class="highlight"><pre>select Entries --output_columns &#39;_key, *&#39; --limit 1
1817
1817
  # [
@@ -1854,13 +1854,13 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
1854
1854
  # ]
1855
1855
  </pre></div>
1856
1856
  </div>
1857
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">_key</span></code> 擬似カラム、 <code class="docutils literal"><span class="pre">content</span></code> カラム、 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値を出力しますが、 <code class="docutils literal"><span class="pre">_id</span></code> 擬似カラムの値は出力しません。</p>
1858
- <p>デフォルト値は <code class="docutils literal"><span class="pre">_id,</span> <span class="pre">_key,</span> <span class="pre">*</span></code> です。これは <code class="docutils literal"><span class="pre">_score</span></code> 以外の全てのカラムを出力するという意味です。</p>
1857
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">_key</span></tt> 擬似カラム、 <tt class="docutils literal"><span class="pre">content</span></tt> カラム、 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値を出力しますが、 <tt class="docutils literal"><span class="pre">_id</span></tt> 擬似カラムの値は出力しません。</p>
1858
+ <p>デフォルト値は <tt class="docutils literal"><span class="pre">_id,</span> <span class="pre">_key,</span> <span class="pre">*</span></tt> です。これは <tt class="docutils literal"><span class="pre">_score</span></tt> 以外の全てのカラムを出力するという意味です。</p>
1859
1859
  </div>
1860
1860
  <div class="section" id="sortby">
1861
- <span id="select-sortby"></span><h4>7.3.29.4.4.2. <code class="docutils literal"><span class="pre">sortby</span></code><a class="headerlink" href="#sortby" title="このヘッドラインへのパーマリンク">¶</a></h4>
1862
- <p>ソートキーを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。それぞれのソートキーはカラム名を指定します。</p>
1863
- <p>以下は簡単な <code class="docutils literal"><span class="pre">sortby</span></code> の使用例です。</p>
1861
+ <span id="select-sortby"></span><h4>7.3.33.4.4.2. <tt class="docutils literal"><span class="pre">sortby</span></tt><a class="headerlink" href="#sortby" title="このヘッドラインへのパーマリンク">¶</a></h4>
1862
+ <p>ソートキーを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。それぞれのソートキーはカラム名を指定します。</p>
1863
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">sortby</span></tt> の使用例です。</p>
1864
1864
  <p>実行例:</p>
1865
1865
  <div class="highlight-none"><div class="highlight"><pre>select Entries --sortby &#39;n_likes, _id&#39;
1866
1866
  # [
@@ -1936,9 +1936,9 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
1936
1936
  # ]
1937
1937
  </pre></div>
1938
1938
  </div>
1939
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値で昇順にソートします。 <code class="docutils literal"><span class="pre">n_likes</span></code> の値が同じレコードについては <code class="docutils literal"><span class="pre">_id</span></code> カラムの値で昇順にソートします。 <code class="docutils literal"><span class="pre">&quot;Good-bye</span> <span class="pre">Senna&quot;</span></code> と <code class="docutils literal"><span class="pre">&quot;Good-bye</span> <span class="pre">Tritonn&quot;</span></code> が <code class="docutils literal"><span class="pre">_id</span></code> カラムの値でソートしているケースです。</p>
1940
- <p>降順でソートしたい場合はカラム名の前に <code class="docutils literal"><span class="pre">-</span></code> をつけてください。</p>
1941
- <p>以下は降順の <code class="docutils literal"><span class="pre">sortby</span></code> の使用例です。</p>
1939
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値で昇順にソートします。 <tt class="docutils literal"><span class="pre">n_likes</span></tt> の値が同じレコードについては <tt class="docutils literal"><span class="pre">_id</span></tt> カラムの値で昇順にソートします。 <tt class="docutils literal"><span class="pre">&quot;Good-bye</span> <span class="pre">Senna&quot;</span></tt> と <tt class="docutils literal"><span class="pre">&quot;Good-bye</span> <span class="pre">Tritonn&quot;</span></tt> が <tt class="docutils literal"><span class="pre">_id</span></tt> カラムの値でソートしているケースです。</p>
1940
+ <p>降順でソートしたい場合はカラム名の前に <tt class="docutils literal"><span class="pre">-</span></tt> をつけてください。</p>
1941
+ <p>以下は降順の <tt class="docutils literal"><span class="pre">sortby</span></tt> の使用例です。</p>
1942
1942
  <p>実行例:</p>
1943
1943
  <div class="highlight-none"><div class="highlight"><pre>select Entries --sortby &#39;-n_likes, _id&#39;
1944
1944
  # [
@@ -2014,8 +2014,8 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2014
2014
  # ]
2015
2015
  </pre></div>
2016
2016
  </div>
2017
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値で降順にソートします。しかし、 <code class="docutils literal"><span class="pre">_id</span></code> でソートするときは昇順でソートします。</p>
2018
- <p>もし、 <code class="docutils literal"><span class="pre">query</span></code> または <code class="docutils literal"><span class="pre">filter</span></code> 引数を使っているときは、 <code class="docutils literal"><span class="pre">sortby</span></code> の中で <code class="docutils literal"><span class="pre">_score</span></code> 擬似カラムを使うことができます。</p>
2017
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値で降順にソートします。しかし、 <tt class="docutils literal"><span class="pre">_id</span></tt> でソートするときは昇順でソートします。</p>
2018
+ <p>もし、 <tt class="docutils literal"><span class="pre">query</span></tt> または <tt class="docutils literal"><span class="pre">filter</span></tt> 引数を使っているときは、 <tt class="docutils literal"><span class="pre">sortby</span></tt> の中で <tt class="docutils literal"><span class="pre">_score</span></tt> 擬似カラムを使うことができます。</p>
2019
2019
  <p>実行例:</p>
2020
2020
  <div class="highlight-none"><div class="highlight"><pre>select Entries --match_columns content --query fast --sortby -_score --output_columns &#39;_key, _score&#39;
2021
2021
  # [
@@ -2052,12 +2052,12 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2052
2052
  # ]
2053
2053
  </pre></div>
2054
2054
  </div>
2055
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドはマッチしたレコードをヒットスコアで降順にソートし、レコードのキーとヒットスコアを出力します。</p>
2056
- <p><code class="docutils literal"><span class="pre">query</span></code> 引数も <code class="docutils literal"><span class="pre">filter</span></code> 引数も指定しないで <code class="docutils literal"><span class="pre">_score</span></code> を使った場合は、 <code class="docutils literal"><span class="pre">_score</span></code> を無視して、ログファイルに警告を出力します。</p>
2055
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはマッチしたレコードをヒットスコアで降順にソートし、レコードのキーとヒットスコアを出力します。</p>
2056
+ <p><tt class="docutils literal"><span class="pre">query</span></tt> 引数も <tt class="docutils literal"><span class="pre">filter</span></tt> 引数も指定しないで <tt class="docutils literal"><span class="pre">_score</span></tt> を使った場合は、 <tt class="docutils literal"><span class="pre">_score</span></tt> を無視して、ログファイルに警告を出力します。</p>
2057
2057
  </div>
2058
2058
  <div class="section" id="offset">
2059
- <span id="select-offset"></span><h4>7.3.29.4.4.3. <code class="docutils literal"><span class="pre">offset</span></code><a class="headerlink" href="#offset" title="このヘッドラインへのパーマリンク">¶</a></h4>
2060
- <p>出力するレコードの範囲を決めるためのオフセットを指定します。オフセットは0始まりです。 <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></code> は2番目以降のレコードを出力するという意味になります。</p>
2059
+ <span id="select-offset"></span><h4>7.3.33.4.4.3. <tt class="docutils literal"><span class="pre">offset</span></tt><a class="headerlink" href="#offset" title="このヘッドラインへのパーマリンク">¶</a></h4>
2060
+ <p>出力するレコードの範囲を決めるためのオフセットを指定します。オフセットは0始まりです。 <tt class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></tt> は2番目以降のレコードを出力するという意味になります。</p>
2061
2061
  <p>実行例:</p>
2062
2062
  <div class="highlight-none"><div class="highlight"><pre>select Entries --sortby _id --offset 3 --output_columns _key
2063
2063
  # [
@@ -2088,8 +2088,8 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2088
2088
  # ]
2089
2089
  </pre></div>
2090
2090
  </div>
2091
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは4番目以降のレコードを出力します。</p>
2092
- <p>負の値を指定することもできます。負の値の場合は <code class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">offset</span></code> 番目のレコードから始まる範囲という意味になります。もし、マッチしたレコードが3つあり、 <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">-2</span></code> を指定した場合は2番目( <code class="docutils literal"><span class="pre">3</span> <span class="pre">+</span> <span class="pre">-2</span> <span class="pre">=</span> <span class="pre">1</span></code> 。 <code class="docutils literal"><span class="pre">1</span></code> は2番目という意味です。オフセットは0始まりということを思い出してください。) のレコードから3番目のレコードを取得します。</p>
2091
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは4番目以降のレコードを出力します。</p>
2092
+ <p>負の値を指定することもできます。負の値の場合は <tt class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">offset</span></tt> 番目のレコードから始まる範囲という意味になります。もし、マッチしたレコードが3つあり、 <tt class="docutils literal"><span class="pre">--offset</span> <span class="pre">-2</span></tt> を指定した場合は2番目( <tt class="docutils literal"><span class="pre">3</span> <span class="pre">+</span> <span class="pre">-2</span> <span class="pre">=</span> <span class="pre">1</span></tt> 。 <tt class="docutils literal"><span class="pre">1</span></tt> は2番目という意味です。オフセットは0始まりということを思い出してください。) のレコードから3番目のレコードを取得します。</p>
2093
2093
  <p>実行例:</p>
2094
2094
  <div class="highlight-none"><div class="highlight"><pre>select Entries --sortby _id --offset -2 --output_columns _key
2095
2095
  # [
@@ -2120,13 +2120,13 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2120
2120
  # ]
2121
2121
  </pre></div>
2122
2122
  </div>
2123
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは4番目以降のレコードを出力します。なぜなら、全レコード数が <code class="docutils literal"><span class="pre">5</span></code> だからです。</p>
2124
- <p>デフォルト値は <code class="docutils literal"><span class="pre">0</span></code> です。</p>
2123
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは4番目以降のレコードを出力します。なぜなら、全レコード数が <tt class="docutils literal"><span class="pre">5</span></tt> だからです。</p>
2124
+ <p>デフォルト値は <tt class="docutils literal"><span class="pre">0</span></tt> です。</p>
2125
2125
  </div>
2126
2126
  <div class="section" id="limit">
2127
- <h4>7.3.29.4.4.4. <code class="docutils literal"><span class="pre">limit</span></code><a class="headerlink" href="#limit" title="このヘッドラインへのパーマリンク">¶</a></h4>
2128
- <p><code class="docutils literal"><span class="pre">limit</span></code> は出力レコード数の最大値を指定します。 もし、マッチしたレコード数が <code class="docutils literal"><span class="pre">limit</span></code> よりも小さい場合はすべてのレコードが出力されます。</p>
2129
- <p>以下は簡単な <code class="docutils literal"><span class="pre">limit</span></code> の使用例です。</p>
2127
+ <h4>7.3.33.4.4.4. <tt class="docutils literal"><span class="pre">limit</span></tt><a class="headerlink" href="#limit" title="このヘッドラインへのパーマリンク">¶</a></h4>
2128
+ <p><tt class="docutils literal"><span class="pre">limit</span></tt> は出力レコード数の最大値を指定します。 もし、マッチしたレコード数が <tt class="docutils literal"><span class="pre">limit</span></tt> よりも小さい場合はすべてのレコードが出力されます。</p>
2129
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">limit</span></tt> の使用例です。</p>
2130
2130
  <p>実行例:</p>
2131
2131
  <div class="highlight-none"><div class="highlight"><pre>select Entries --sortby _id --offset 2 --limit 3 --output_columns _key
2132
2132
  # [
@@ -2160,9 +2160,9 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2160
2160
  # ]
2161
2161
  </pre></div>
2162
2162
  </div>
2163
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは3番目、4番目、5番目のレコードを出力します。</p>
2164
- <p>負の値を指定することもできます。負の値の場合は、最大で <code class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">limit</span> <span class="pre">+</span> <span class="pre">1</span></code> 件のレコードを出力するという意味になります。 例えば、 <code class="docutils literal"><span class="pre">--limit</span> <span class="pre">-1</span></code> はすべてのレコードを出力します。これはすべてのレコードを表示する場合にとても便利です。</p>
2165
- <p>以下は負の値を使った <code class="docutils literal"><span class="pre">limit</span></code> の簡単な使用例です。</p>
2163
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは3番目、4番目、5番目のレコードを出力します。</p>
2164
+ <p>負の値を指定することもできます。負の値の場合は、最大で <tt class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">limit</span> <span class="pre">+</span> <span class="pre">1</span></tt> 件のレコードを出力するという意味になります。 例えば、 <tt class="docutils literal"><span class="pre">--limit</span> <span class="pre">-1</span></tt> はすべてのレコードを出力します。これはすべてのレコードを表示する場合にとても便利です。</p>
2165
+ <p>以下は負の値を使った <tt class="docutils literal"><span class="pre">limit</span></tt> の簡単な使用例です。</p>
2166
2166
  <p>実行例:</p>
2167
2167
  <div class="highlight-none"><div class="highlight"><pre>select Entries --limit -1
2168
2168
  # [
@@ -2238,24 +2238,24 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2238
2238
  # ]
2239
2239
  </pre></div>
2240
2240
  </div>
2241
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドはすべてのレコードを出力します。</p>
2242
- <p>デフォルト値は <code class="docutils literal"><span class="pre">10</span></code> です。</p>
2241
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはすべてのレコードを出力します。</p>
2242
+ <p>デフォルト値は <tt class="docutils literal"><span class="pre">10</span></tt> です。</p>
2243
2243
  </div>
2244
2244
  <div class="section" id="scorer">
2245
- <h4>7.3.29.4.4.5. <code class="docutils literal"><span class="pre">scorer</span></code><a class="headerlink" href="#scorer" title="このヘッドラインへのパーマリンク">¶</a></h4>
2245
+ <h4>7.3.33.4.4.5. <tt class="docutils literal"><span class="pre">scorer</span></tt><a class="headerlink" href="#scorer" title="このヘッドラインへのパーマリンク">¶</a></h4>
2246
2246
  <p>TODO: write in English and add example.</p>
2247
2247
  <p>検索条件にマッチする全てのレコードに対して適用するgrn_exprをscript形式で指定します。</p>
2248
2248
  <p>scorerは、検索処理が完了し、ソート処理が実行される前に呼び出されます。従って、各レコードのスコアを操作する式を指定しておけば、検索結果のソート順序をカスタマイズできるようになります。</p>
2249
2249
  </div>
2250
2250
  </div>
2251
2251
  <div class="section" id="drilldown-related-parameters">
2252
- <span id="select-drilldown-related-parameters"></span><h3>7.3.29.4.5. ドリルダウン関連の引数<a class="headerlink" href="#drilldown-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
2252
+ <span id="select-drilldown-related-parameters"></span><h3>7.3.33.4.5. ドリルダウン関連の引数<a class="headerlink" href="#drilldown-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
2253
2253
  <p>このセクションでは基本的なドリルダウン関連の引数について説明します。高度なドリルダウン関連の引数は他のセクションで説明します。</p>
2254
2254
  <div class="section" id="select-drilldown">
2255
- <span id="id6"></span><h4>7.3.29.4.5.1. <code class="docutils literal"><span class="pre">drilldown</span></code><a class="headerlink" href="#select-drilldown" title="このヘッドラインへのパーマリンク">¶</a></h4>
2256
- <p>グループ化するときに使うキーを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。</p>
2255
+ <span id="id6"></span><h4>7.3.33.4.5.1. <tt class="docutils literal"><span class="pre">drilldown</span></tt><a class="headerlink" href="#select-drilldown" title="このヘッドラインへのパーマリンク">¶</a></h4>
2256
+ <p>グループ化するときに使うキーを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。</p>
2257
2257
  <p>指定した検索条件にマッチしたレコードを指定したキーのそれぞれでグループ化します。検索条件を指定していない場合はすべてのレコードを指定したキーのそれぞれでグループ化します。</p>
2258
- <p>以下は簡単な <code class="docutils literal"><span class="pre">drilldown</span></code> の使用例です。</p>
2258
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">drilldown</span></tt> の使用例です。</p>
2259
2259
  <p>実行例:</p>
2260
2260
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2261
2261
  --output_columns _key,tag \
@@ -2333,7 +2333,7 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2333
2333
  # ]
2334
2334
  </pre></div>
2335
2335
  </div>
2336
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは次の情報を出力します。</p>
2336
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは次の情報を出力します。</p>
2337
2337
  <blockquote>
2338
2338
  <div><ul class="simple">
2339
2339
  <li><p class="first">「Hello」タグを持つレコードが1つある。</p>
@@ -2344,7 +2344,7 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2344
2344
  </li>
2345
2345
  </ul>
2346
2346
  </div></blockquote>
2347
- <p>以下は検索条件付きで <code class="docutils literal"><span class="pre">drilldown</span></code> を使う例です。</p>
2347
+ <p>以下は検索条件付きで <tt class="docutils literal"><span class="pre">drilldown</span></tt> を使う例です。</p>
2348
2348
  <p>実行例:</p>
2349
2349
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2350
2350
  --output_columns _key,tag \
@@ -2411,10 +2411,10 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2411
2411
  # ]
2412
2412
  </pre></div>
2413
2413
  </div>
2414
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは次の情報を出力します。</p>
2414
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは次の情報を出力します。</p>
2415
2415
  <blockquote>
2416
2416
  <div><ul class="simple">
2417
- <li><p class="first"><code class="docutils literal"><span class="pre">n_likes</span></code> の値が5以上のレコードの中には…</p>
2417
+ <li><p class="first"><tt class="docutils literal"><span class="pre">n_likes</span></tt> の値が5以上のレコードの中には…</p>
2418
2418
  <ul>
2419
2419
  <li><p class="first">「Hello」タグを持つレコードが1つある。</p>
2420
2420
  </li>
@@ -2424,7 +2424,7 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2424
2424
  </li>
2425
2425
  </ul>
2426
2426
  </div></blockquote>
2427
- <p>以下は複数のグループ化キーを指定する <code class="docutils literal"><span class="pre">drilldown</span></code> の例です。</p>
2427
+ <p>以下は複数のグループ化キーを指定する <tt class="docutils literal"><span class="pre">drilldown</span></tt> の例です。</p>
2428
2428
  <p>実行例:</p>
2429
2429
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2430
2430
  --limit 0 \
@@ -2526,10 +2526,10 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2526
2526
  # ]
2527
2527
  </pre></div>
2528
2528
  </div>
2529
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは次の情報を出力します。</p>
2529
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは次の情報を出力します。</p>
2530
2530
  <blockquote>
2531
2531
  <div><ul class="simple">
2532
- <li><p class="first"><code class="docutils literal"><span class="pre">tag</span></code> について:</p>
2532
+ <li><p class="first"><tt class="docutils literal"><span class="pre">tag</span></tt> について:</p>
2533
2533
  <ul>
2534
2534
  <li><p class="first">「Hello」タグを持つレコードが1つある。</p>
2535
2535
  </li>
@@ -2539,7 +2539,7 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2539
2539
  </li>
2540
2540
  </ul>
2541
2541
  </li>
2542
- <li><p class="first"><code class="docutils literal"><span class="pre">n_likes</span></code> について:</p>
2542
+ <li><p class="first"><tt class="docutils literal"><span class="pre">n_likes</span></tt> について:</p>
2543
2543
  <ul>
2544
2544
  <li><p class="first">「Hello」タグを持つレコードが1つある。</p>
2545
2545
  </li>
@@ -2553,10 +2553,10 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2553
2553
  </div></blockquote>
2554
2554
  </div>
2555
2555
  <div class="section" id="drilldown-sortby">
2556
- <span id="select-drilldown-sortby"></span><h4>7.3.29.4.5.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code><a class="headerlink" href="#drilldown-sortby" title="このヘッドラインへのパーマリンク">¶</a></h4>
2557
- <p>ドリルダウン結果のソートキーを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。それぞれのソートキーはカラム名を指定します。</p>
2558
- <p>グループ化されたレコード数は <code class="docutils literal"><span class="pre">_nsubrecs</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> 擬似カラムで参照できます。</p>
2559
- <p>以下は簡単な <code class="docutils literal"><span class="pre">drilldown_sortby</span></code> の使用例です。</p>
2556
+ <span id="select-drilldown-sortby"></span><h4>7.3.33.4.5.2. <tt class="docutils literal"><span class="pre">drilldown_sortby</span></tt><a class="headerlink" href="#drilldown-sortby" title="このヘッドラインへのパーマリンク">¶</a></h4>
2557
+ <p>ドリルダウン結果のソートキーを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。それぞれのソートキーはカラム名を指定します。</p>
2558
+ <p>グループ化されたレコード数は <tt class="docutils literal"><span class="pre">_nsubrecs</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> 擬似カラムで参照できます。</p>
2559
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">drilldown_sortby</span></tt> の使用例です。</p>
2560
2560
  <p>実行例:</p>
2561
2561
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2562
2562
  --limit 0 \
@@ -2659,8 +2659,8 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2659
2659
  # ]
2660
2660
  </pre></div>
2661
2661
  </div>
2662
- <p>ドリルダウン結果は「グループに含まれるレコード数」(= <code class="docutils literal"><span class="pre">_nsubrecs</span></code> )で降順にソートします。「グループに含まれるレコード数」が同じグループが複数あった場合は、グループ化に使ったキー(= <code class="docutils literal"><span class="pre">_key</span></code> )で昇順にソートします。</p>
2663
- <p><code class="docutils literal"><span class="pre">drilldown</span></code> で指定したすべてのグループキーで同じソートキーを使います。</p>
2662
+ <p>ドリルダウン結果は「グループに含まれるレコード数」(= <tt class="docutils literal"><span class="pre">_nsubrecs</span></tt> )で降順にソートします。「グループに含まれるレコード数」が同じグループが複数あった場合は、グループ化に使ったキー(= <tt class="docutils literal"><span class="pre">_key</span></tt> )で昇順にソートします。</p>
2663
+ <p><tt class="docutils literal"><span class="pre">drilldown</span></tt> で指定したすべてのグループキーで同じソートキーを使います。</p>
2664
2664
  <p>実行例:</p>
2665
2665
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2666
2666
  --limit 0 \
@@ -2763,13 +2763,13 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2763
2763
  # ]
2764
2764
  </pre></div>
2765
2765
  </div>
2766
- <p><code class="docutils literal"><span class="pre">tag</span></code> のドリルダウンでも <code class="docutils literal"><span class="pre">n_likes</span></code> のドリルダウンでも同じソートキーを使っています。</p>
2766
+ <p><tt class="docutils literal"><span class="pre">tag</span></tt> のドリルダウンでも <tt class="docutils literal"><span class="pre">n_likes</span></tt> のドリルダウンでも同じソートキーを使っています。</p>
2767
2767
  <p>それぞれのドリルダウンで異なるソートキーを使いたい場合は <a class="reference internal" href="#select-advanced-drilldown-related-parameters"><em>高度なドリルダウン関連の引数</em></a> を参照してください。</p>
2768
2768
  </div>
2769
2769
  <div class="section" id="drilldown-output-columns">
2770
- <span id="select-drilldown-output-columns"></span><h4>7.3.29.4.5.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code><a class="headerlink" href="#drilldown-output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
2771
- <p>ドリルダウン結果から出力するカラムを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。</p>
2772
- <p>以下は <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> の使用例です。</p>
2770
+ <span id="select-drilldown-output-columns"></span><h4>7.3.33.4.5.3. <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt><a class="headerlink" href="#drilldown-output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
2771
+ <p>ドリルダウン結果から出力するカラムを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。</p>
2772
+ <p>以下は <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> の使用例です。</p>
2773
2773
  <p>実行例:</p>
2774
2774
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
2775
2775
  --limit 0 \
@@ -2834,7 +2834,7 @@ select Entries --match_columns content --query &quot;popular&quot; --query_expan
2834
2834
  # ]
2835
2835
  </pre></div>
2836
2836
  </div>
2837
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドはグループ化したキーを出力していくだけです。</p>
2837
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはグループ化したキーを出力していくだけです。</p>
2838
2838
  <p>グループ化したキーが参照型のカラム(型がテーブルのカラム)だった場合、参照型のカラムが参照しているテーブルのカラムにもアクセスできます。</p>
2839
2839
  <p>参照型に対してドリルダウンする方法を示すために使うスキーマ定義とサンプルデータは以下の通りです。</p>
2840
2840
  <p>実行例:</p>
@@ -2863,8 +2863,8 @@ load --table Items
2863
2863
  # [[0, 1337566253.89858, 0.000355720520019531], 3]
2864
2864
  </pre></div>
2865
2865
  </div>
2866
- <p><code class="docutils literal"><span class="pre">Tags</span></code> テーブルは参照されているテーブルです。 <code class="docutils literal"><span class="pre">Items.tag</span></code> は参照型のカラムです。</p>
2867
- <p><code class="docutils literal"><span class="pre">Tags.label</span></code> は <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> の中では <code class="docutils literal"><span class="pre">label</span></code> で参照できます。</p>
2866
+ <p><tt class="docutils literal"><span class="pre">Tags</span></tt> テーブルは参照されているテーブルです。 <tt class="docutils literal"><span class="pre">Items.tag</span></tt> は参照型のカラムです。</p>
2867
+ <p><tt class="docutils literal"><span class="pre">Tags.label</span></tt> は <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> の中では <tt class="docutils literal"><span class="pre">label</span></tt> で参照できます。</p>
2868
2868
  <p>実行例:</p>
2869
2869
  <div class="highlight-none"><div class="highlight"><pre>select Items \
2870
2870
  --limit 0 \
@@ -2924,7 +2924,7 @@ load --table Items
2924
2924
  # ]
2925
2925
  </pre></div>
2926
2926
  </div>
2927
- <p><code class="docutils literal"><span class="pre">*</span></code> を使うと、参照されているテーブル(= <code class="docutils literal"><span class="pre">Tags</span></code> )のすべてのカラムを参照できます。</p>
2927
+ <p><tt class="docutils literal"><span class="pre">*</span></tt> を使うと、参照されているテーブル(= <tt class="docutils literal"><span class="pre">Tags</span></tt> )のすべてのカラムを参照できます。</p>
2928
2928
  <p>実行例:</p>
2929
2929
  <div class="highlight-none"><div class="highlight"><pre>select Items \
2930
2930
  --limit 0 \
@@ -2990,14 +2990,14 @@ load --table Items
2990
2990
  # ]
2991
2991
  </pre></div>
2992
2992
  </div>
2993
- <p><code class="docutils literal"><span class="pre">*</span></code> は <code class="docutils literal"><span class="pre">label,</span> <span class="pre">priority</span></code> に展開されます。</p>
2994
- <p><code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> のデフォルト値は <code class="docutils literal"><span class="pre">_key,</span> <span class="pre">_nsubrecs</span></code> です。グループ化に使ったキーとグループのレコード数を出力する、ということです。</p>
2995
- <p><a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> を使うと、 <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> の中で <code class="docutils literal"><span class="pre">_max</span></code> 、 <code class="docutils literal"><span class="pre">_min</span></code> 、 <code class="docutils literal"><span class="pre">_sum</span></code> 、 <code class="docutils literal"><span class="pre">_avg</span></code> といった <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> も使えるようになります。詳細は <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code> のドキュメントを参照してください。</p>
2993
+ <p><tt class="docutils literal"><span class="pre">*</span></tt> は <tt class="docutils literal"><span class="pre">label,</span> <span class="pre">priority</span></tt> に展開されます。</p>
2994
+ <p><tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> のデフォルト値は <tt class="docutils literal"><span class="pre">_key,</span> <span class="pre">_nsubrecs</span></tt> です。グループ化に使ったキーとグループのレコード数を出力する、ということです。</p>
2995
+ <p><a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> を使うと、 <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> の中で <tt class="docutils literal"><span class="pre">_max</span></tt> 、 <tt class="docutils literal"><span class="pre">_min</span></tt> 、 <tt class="docutils literal"><span class="pre">_sum</span></tt> 、 <tt class="docutils literal"><span class="pre">_avg</span></tt> といった <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> も使えるようになります。詳細は <tt class="docutils literal"><span class="pre">drilldown_calc_types</span></tt> のドキュメントを参照してください。</p>
2996
2996
  </div>
2997
2997
  <div class="section" id="drilldown-offset">
2998
- <span id="select-drilldown-offset"></span><h4>7.3.29.4.5.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code><a class="headerlink" href="#drilldown-offset" title="このヘッドラインへのパーマリンク">¶</a></h4>
2999
- <p>ドリルダウン結果を出力するレコードの範囲を決めるためのオフセットを指定します。オフセットは0始まりです。 <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></code> は2番目以降のレコードを出力するという意味になります。</p>
3000
- <p>以下は簡単な <code class="docutils literal"><span class="pre">drilldown_offset</span></code> の使用例です。</p>
2998
+ <span id="select-drilldown-offset"></span><h4>7.3.33.4.5.4. <tt class="docutils literal"><span class="pre">drilldown_offset</span></tt><a class="headerlink" href="#drilldown-offset" title="このヘッドラインへのパーマリンク">¶</a></h4>
2999
+ <p>ドリルダウン結果を出力するレコードの範囲を決めるためのオフセットを指定します。オフセットは0始まりです。 <tt class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></tt> は2番目以降のレコードを出力するという意味になります。</p>
3000
+ <p>以下は簡単な <tt class="docutils literal"><span class="pre">drilldown_offset</span></tt> の使用例です。</p>
3001
3001
  <p>実行例:</p>
3002
3002
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3003
3003
  --limit 0 \
@@ -3066,8 +3066,8 @@ load --table Items
3066
3066
  # ]
3067
3067
  </pre></div>
3068
3068
  </div>
3069
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは2番目以降のレコードを出力します。</p>
3070
- <p>負の値を指定することもできます。負の値の場合は <code class="docutils literal"><span class="pre">グループの数</span> <span class="pre">+</span> <span class="pre">offset</span></code> 番目のレコードから始まる範囲という意味になります。もし、グループの数が3つあり、 <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">-2</span></code> を指定した場合は1番目( <code class="docutils literal"><span class="pre">3</span> <span class="pre">+</span> <span class="pre">-2</span> <span class="pre">=</span> <span class="pre">1</span></code> 。 <code class="docutils literal"><span class="pre">1</span></code> は2番目です。オフセットは0始まりということを思い出してください。) のグループから3番目のグループが出力されます。</p>
3069
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは2番目以降のレコードを出力します。</p>
3070
+ <p>負の値を指定することもできます。負の値の場合は <tt class="docutils literal"><span class="pre">グループの数</span> <span class="pre">+</span> <span class="pre">offset</span></tt> 番目のレコードから始まる範囲という意味になります。もし、グループの数が3つあり、 <tt class="docutils literal"><span class="pre">--offset</span> <span class="pre">-2</span></tt> を指定した場合は1番目( <tt class="docutils literal"><span class="pre">3</span> <span class="pre">+</span> <span class="pre">-2</span> <span class="pre">=</span> <span class="pre">1</span></tt> 。 <tt class="docutils literal"><span class="pre">1</span></tt> は2番目です。オフセットは0始まりということを思い出してください。) のグループから3番目のグループが出力されます。</p>
3071
3071
  <p>実行例:</p>
3072
3072
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3073
3073
  --limit 0 \
@@ -3136,13 +3136,13 @@ load --table Items
3136
3136
  # ]
3137
3137
  </pre></div>
3138
3138
  </div>
3139
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは2番目以降のグループを出力します。なぜなら、全グループ数が <code class="docutils literal"><span class="pre">3</span></code> だからです。</p>
3140
- <p><code class="docutils literal"><span class="pre">drilldown_offset</span></code> のデフォルト値は <code class="docutils literal"><span class="pre">0</span></code> です。</p>
3139
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは2番目以降のグループを出力します。なぜなら、全グループ数が <tt class="docutils literal"><span class="pre">3</span></tt> だからです。</p>
3140
+ <p><tt class="docutils literal"><span class="pre">drilldown_offset</span></tt> のデフォルト値は <tt class="docutils literal"><span class="pre">0</span></tt> です。</p>
3141
3141
  </div>
3142
3142
  <div class="section" id="drilldown-limit">
3143
- <span id="select-drilldown-limit"></span><h4>7.3.29.4.5.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code><a class="headerlink" href="#drilldown-limit" title="このヘッドラインへのパーマリンク">¶</a></h4>
3144
- <p><code class="docutils literal"><span class="pre">drilldown_limit</span></code> は出力グループ数の最大値を指定します。もし、グループ数 <code class="docutils literal"><span class="pre">limit</span></code> よりも小さい場合はすべてのグループが出力されます。</p>
3145
- <p>以下は <code class="docutils literal"><span class="pre">drilldown_limit</span></code> の使用例です。</p>
3143
+ <span id="select-drilldown-limit"></span><h4>7.3.33.4.5.5. <tt class="docutils literal"><span class="pre">drilldown_limit</span></tt><a class="headerlink" href="#drilldown-limit" title="このヘッドラインへのパーマリンク">¶</a></h4>
3144
+ <p><tt class="docutils literal"><span class="pre">drilldown_limit</span></tt> は出力グループ数の最大値を指定します。もし、グループ数 <tt class="docutils literal"><span class="pre">limit</span></tt> よりも小さい場合はすべてのグループが出力されます。</p>
3145
+ <p>以下は <tt class="docutils literal"><span class="pre">drilldown_limit</span></tt> の使用例です。</p>
3146
3146
  <p>実行例:</p>
3147
3147
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3148
3148
  --limit 0 \
@@ -3212,9 +3212,9 @@ load --table Items
3212
3212
  # ]
3213
3213
  </pre></div>
3214
3214
  </div>
3215
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは2番目、3番目のレコードを出力します。</p>
3216
- <p>負の値を指定することもできます。負の値の場合は、最大で <code class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">drilldown_limit</span> <span class="pre">+</span> <span class="pre">1</span></code> 件のレコードを出力するという意味になります。 例えば、 <code class="docutils literal"><span class="pre">--drilldown_limit</span> <span class="pre">-1</span></code> はすべてのレコードを出力します。これはすべてのレコードを表示する場合にとても便利です。</p>
3217
- <p>以下は <code class="docutils literal"><span class="pre">drilldown_limit</span></code> に負の値を指定する例です。</p>
3215
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは2番目、3番目のレコードを出力します。</p>
3216
+ <p>負の値を指定することもできます。負の値の場合は、最大で <tt class="docutils literal"><span class="pre">マッチしたレコード数</span> <span class="pre">+</span> <span class="pre">drilldown_limit</span> <span class="pre">+</span> <span class="pre">1</span></tt> 件のレコードを出力するという意味になります。 例えば、 <tt class="docutils literal"><span class="pre">--drilldown_limit</span> <span class="pre">-1</span></tt> はすべてのレコードを出力します。これはすべてのレコードを表示する場合にとても便利です。</p>
3217
+ <p>以下は <tt class="docutils literal"><span class="pre">drilldown_limit</span></tt> に負の値を指定する例です。</p>
3218
3218
  <p>実行例:</p>
3219
3219
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3220
3220
  --limit 0 \
@@ -3287,14 +3287,14 @@ load --table Items
3287
3287
  # ]
3288
3288
  </pre></div>
3289
3289
  </div>
3290
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドはすべてのグループを出力します。</p>
3291
- <p><code class="docutils literal"><span class="pre">drilldown_limit</span></code> のデフォルト値は <code class="docutils literal"><span class="pre">10</span></code> です。</p>
3290
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはすべてのグループを出力します。</p>
3291
+ <p><tt class="docutils literal"><span class="pre">drilldown_limit</span></tt> のデフォルト値は <tt class="docutils literal"><span class="pre">10</span></tt> です。</p>
3292
3292
  </div>
3293
3293
  <div class="section" id="drilldown-calc-types">
3294
- <span id="select-drilldown-calc-types"></span><h4>7.3.29.4.5.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code><a class="headerlink" href="#drilldown-calc-types" title="このヘッドラインへのパーマリンク">¶</a></h4>
3295
- <p>ドリルダウンでグループ内のレコードの値を計算(集計)する方法を指定します。「 <code class="docutils literal"><span class="pre">,</span></code> 」で区切ることで複数の計算タイプを指定することもできます。たとえば、 <code class="docutils literal"><span class="pre">MAX,MIN</span></code> といった具合です。</p>
3294
+ <span id="select-drilldown-calc-types"></span><h4>7.3.33.4.5.6. <tt class="docutils literal"><span class="pre">drilldown_calc_types</span></tt><a class="headerlink" href="#drilldown-calc-types" title="このヘッドラインへのパーマリンク">¶</a></h4>
3295
+ <p>ドリルダウンでグループ内のレコードの値を計算(集計)する方法を指定します。「 <tt class="docutils literal"><span class="pre">,</span></tt> 」で区切ることで複数の計算タイプを指定することもできます。たとえば、 <tt class="docutils literal"><span class="pre">MAX,MIN</span></tt> といった具合です。</p>
3296
3296
  <p>計算対象の値はグループ内のレコードのカラムから取得します。このカラムは <a class="reference internal" href="#select-drilldown-calc-target"><em>drilldown_calc_target</em></a> で指定します。</p>
3297
- <p>計算した値は <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> の中で <code class="docutils literal"><span class="pre">_max</span></code> や <code class="docutils literal"><span class="pre">_min</span></code> のような <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を指定すると取得できます。</p>
3297
+ <p>計算した値は <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> の中で <tt class="docutils literal"><span class="pre">_max</span></tt> や <tt class="docutils literal"><span class="pre">_min</span></tt> のような <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を指定すると取得できます。</p>
3298
3298
  <p>以下の計算タイプを使えます。</p>
3299
3299
  <table border="1" class="docutils">
3300
3300
  <colgroup>
@@ -3315,7 +3315,7 @@ load --table Items
3315
3315
  </tr>
3316
3316
  </thead>
3317
3317
  <tbody valign="top">
3318
- <tr class="row-even"><td><code class="docutils literal"><span class="pre">NONE</span></code></td>
3318
+ <tr class="row-even"><td><tt class="docutils literal"><span class="pre">NONE</span></tt></td>
3319
3319
  <td><p class="first last">なし。</p>
3320
3320
  </td>
3321
3321
  <td><p class="first last">必要ない。</p>
@@ -3323,36 +3323,36 @@ load --table Items
3323
3323
  <td><p class="first last">無視されます。</p>
3324
3324
  </td>
3325
3325
  </tr>
3326
- <tr class="row-odd"><td><code class="docutils literal"><span class="pre">COUNT</span></code></td>
3327
- <td><code class="docutils literal"><span class="pre">_nsubrecs</span></code></td>
3326
+ <tr class="row-odd"><td><tt class="docutils literal"><span class="pre">COUNT</span></tt></td>
3327
+ <td><tt class="docutils literal"><span class="pre">_nsubrecs</span></tt></td>
3328
3328
  <td><p class="first last">必要ない。</p>
3329
3329
  </td>
3330
3330
  <td><p class="first last">グループ内のレコードの数を数える。常に有効なので指定する必要はない。</p>
3331
3331
  </td>
3332
3332
  </tr>
3333
- <tr class="row-even"><td><code class="docutils literal"><span class="pre">MAX</span></code></td>
3334
- <td><code class="docutils literal"><span class="pre">_max</span></code></td>
3333
+ <tr class="row-even"><td><tt class="docutils literal"><span class="pre">MAX</span></tt></td>
3334
+ <td><tt class="docutils literal"><span class="pre">_max</span></tt></td>
3335
3335
  <td><p class="first last">必要。</p>
3336
3336
  </td>
3337
3337
  <td><p class="first last">グループ内のレコードの整数値の中で最大の値を見つける。</p>
3338
3338
  </td>
3339
3339
  </tr>
3340
- <tr class="row-odd"><td><code class="docutils literal"><span class="pre">MIN</span></code></td>
3341
- <td><code class="docutils literal"><span class="pre">_min</span></code></td>
3340
+ <tr class="row-odd"><td><tt class="docutils literal"><span class="pre">MIN</span></tt></td>
3341
+ <td><tt class="docutils literal"><span class="pre">_min</span></tt></td>
3342
3342
  <td><p class="first last">必要。</p>
3343
3343
  </td>
3344
3344
  <td><p class="first last">グループ内のレコードの整数値の中で最小の値を見つける。</p>
3345
3345
  </td>
3346
3346
  </tr>
3347
- <tr class="row-even"><td><code class="docutils literal"><span class="pre">SUM</span></code></td>
3348
- <td><code class="docutils literal"><span class="pre">_sum</span></code></td>
3347
+ <tr class="row-even"><td><tt class="docutils literal"><span class="pre">SUM</span></tt></td>
3348
+ <td><tt class="docutils literal"><span class="pre">_sum</span></tt></td>
3349
3349
  <td><p class="first last">必要。</p>
3350
3350
  </td>
3351
3351
  <td><p class="first last">グループ内のレコードの整数値の合計を計算する。</p>
3352
3352
  </td>
3353
3353
  </tr>
3354
- <tr class="row-odd"><td><code class="docutils literal"><span class="pre">AVG</span></code></td>
3355
- <td><code class="docutils literal"><span class="pre">_avg</span></code></td>
3354
+ <tr class="row-odd"><td><tt class="docutils literal"><span class="pre">AVG</span></tt></td>
3355
+ <td><tt class="docutils literal"><span class="pre">_avg</span></tt></td>
3356
3356
  <td><p class="first last">必要。</p>
3357
3357
  </td>
3358
3358
  <td><p class="first last">グループ内のレコードの整数値・浮動小数点数値の平均を計算する。</p>
@@ -3360,7 +3360,7 @@ load --table Items
3360
3360
  </tr>
3361
3361
  </tbody>
3362
3362
  </table>
3363
- <p>以下は <code class="docutils literal"><span class="pre">MAX</span></code> の使用例です。</p>
3363
+ <p>以下は <tt class="docutils literal"><span class="pre">MAX</span></tt> の使用例です。</p>
3364
3364
  <p>実行例:</p>
3365
3365
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3366
3366
  --limit -1 \
@@ -3469,8 +3469,8 @@ load --table Items
3469
3469
  # ]
3470
3470
  </pre></div>
3471
3471
  </div>
3472
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">tag</span></code> カラムの値ですべてのレコードをグループ化します。その後、各グループについて最大の <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値を探し、「グループ化に使ったキー」と「 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の最大値」のペアのリストを出力します。 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の最大値を参照するために <code class="docutils literal"><span class="pre">_max</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3473
- <p>以下は <code class="docutils literal"><span class="pre">MIN</span></code> の使用例です。</p>
3472
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">tag</span></tt> カラムの値ですべてのレコードをグループ化します。その後、各グループについて最大の <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値を探し、「グループ化に使ったキー」と「 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の最大値」のペアのリストを出力します。 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の最大値を参照するために <tt class="docutils literal"><span class="pre">_max</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3473
+ <p>以下は <tt class="docutils literal"><span class="pre">MIN</span></tt> の使用例です。</p>
3474
3474
  <p>実行例:</p>
3475
3475
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3476
3476
  --limit -1 \
@@ -3579,8 +3579,8 @@ load --table Items
3579
3579
  # ]
3580
3580
  </pre></div>
3581
3581
  </div>
3582
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">tag</span></code> カラムの値ですべてのレコードをグループ化します。その後、各グループについて最小の <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値を探し、「グループ化に使ったキー」と「 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の最小値」のペアのリストを出力します。 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の最小値を参照するために <code class="docutils literal"><span class="pre">_min</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3583
- <p>以下は <code class="docutils literal"><span class="pre">SUM</span></code> の使用例です。</p>
3582
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">tag</span></tt> カラムの値ですべてのレコードをグループ化します。その後、各グループについて最小の <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値を探し、「グループ化に使ったキー」と「 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の最小値」のペアのリストを出力します。 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の最小値を参照するために <tt class="docutils literal"><span class="pre">_min</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3583
+ <p>以下は <tt class="docutils literal"><span class="pre">SUM</span></tt> の使用例です。</p>
3584
3584
  <p>実行例:</p>
3585
3585
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3586
3586
  --limit -1 \
@@ -3689,8 +3689,8 @@ load --table Items
3689
3689
  # ]
3690
3690
  </pre></div>
3691
3691
  </div>
3692
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">tag</span></code> カラムの値ですべてのレコードをグループ化します。その後、各グループについて <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの合計を計算し、「グループ化に使ったキー」と「 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の合計」のペアのリストを出力します。 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の合計を参照するために <code class="docutils literal"><span class="pre">_sum</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3693
- <p>以下は <code class="docutils literal"><span class="pre">AVG</span></code> の使用例です。</p>
3692
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">tag</span></tt> カラムの値ですべてのレコードをグループ化します。その後、各グループについて <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの合計を計算し、「グループ化に使ったキー」と「 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の合計」のペアのリストを出力します。 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の合計を参照するために <tt class="docutils literal"><span class="pre">_sum</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3693
+ <p>以下は <tt class="docutils literal"><span class="pre">AVG</span></tt> の使用例です。</p>
3694
3694
  <p>実行例:</p>
3695
3695
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
3696
3696
  --limit -1 \
@@ -3799,7 +3799,7 @@ load --table Items
3799
3799
  # ]
3800
3800
  </pre></div>
3801
3801
  </div>
3802
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは <code class="docutils literal"><span class="pre">tag</span></code> カラムの値ですべてのレコードをグループ化します。その後、各グループについて <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの平均を計算し、「グループ化に使ったキー」と「 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の平均」のペアのリストを出力します。 <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値の合計を参照するために <code class="docutils literal"><span class="pre">_avg</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3802
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは <tt class="docutils literal"><span class="pre">tag</span></tt> カラムの値ですべてのレコードをグループ化します。その後、各グループについて <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの平均を計算し、「グループ化に使ったキー」と「 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の平均」のペアのリストを出力します。 <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値の合計を参照するために <tt class="docutils literal"><span class="pre">_avg</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使っています。</p>
3803
3803
  <p>以下はすべての計算タイプを使う例です。</p>
3804
3804
  <p>実行例:</p>
3805
3805
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
@@ -3937,82 +3937,82 @@ load --table Items
3937
3937
  # ]
3938
3938
  </pre></div>
3939
3939
  </div>
3940
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドは複数の計算タイプを <code class="docutils literal"><span class="pre">MAX,MIN,SUM,AVG</span></code> というように「 <code class="docutils literal"><span class="pre">,</span></code> 」で区切って指定しています。 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> で <code class="docutils literal"><span class="pre">COUNT</span></code> を指定していなくても <code class="docutils literal"><span class="pre">_nsubrecs</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使えます。これは、 <code class="docutils literal"><span class="pre">COUNT</span></code> は常に有効だからです。</p>
3941
- <p><code class="docutils literal"><span class="pre">drilldown_calc_types</span></code> のデフォルト値は <code class="docutils literal"><span class="pre">NONE</span></code> です。これは、 <code class="docutils literal"><span class="pre">COUNT</span></code> だけが有効になっているという意味です。なぜなら、 <code class="docutils literal"><span class="pre">NONE</span></code> は単に無視されて、 <code class="docutils literal"><span class="pre">COUNT</span></code> は常に有効だからです。</p>
3940
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドは複数の計算タイプを <tt class="docutils literal"><span class="pre">MAX,MIN,SUM,AVG</span></tt> というように「 <tt class="docutils literal"><span class="pre">,</span></tt> 」で区切って指定しています。 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> で <tt class="docutils literal"><span class="pre">COUNT</span></tt> を指定していなくても <tt class="docutils literal"><span class="pre">_nsubrecs</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使えます。これは、 <tt class="docutils literal"><span class="pre">COUNT</span></tt> は常に有効だからです。</p>
3941
+ <p><tt class="docutils literal"><span class="pre">drilldown_calc_types</span></tt> のデフォルト値は <tt class="docutils literal"><span class="pre">NONE</span></tt> です。これは、 <tt class="docutils literal"><span class="pre">COUNT</span></tt> だけが有効になっているという意味です。なぜなら、 <tt class="docutils literal"><span class="pre">NONE</span></tt> は単に無視されて、 <tt class="docutils literal"><span class="pre">COUNT</span></tt> は常に有効だからです。</p>
3942
3942
  </div>
3943
3943
  <div class="section" id="drilldown-calc-target">
3944
- <span id="select-drilldown-calc-target"></span><h4>7.3.29.4.5.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code><a class="headerlink" href="#drilldown-calc-target" title="このヘッドラインへのパーマリンク">¶</a></h4>
3944
+ <span id="select-drilldown-calc-target"></span><h4>7.3.33.4.5.7. <tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt><a class="headerlink" href="#drilldown-calc-target" title="このヘッドラインへのパーマリンク">¶</a></h4>
3945
3945
  <p><a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> の計算対象のカラムを指定します。</p>
3946
- <p><a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> で <code class="docutils literal"><span class="pre">MAX</span></code> のように計算対象のカラムが必要な計算タイプを指定したにも関わらず <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code> を省略すると、計算結果は常に <code class="docutils literal"><span class="pre">0</span></code> になります。</p>
3947
- <p><code class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">n_likes</span></code> というように1つのカラム名だけしか指定できません。 <code class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">_key,n_likes</span></code> というように複数のカラムを指定することはできません。</p>
3948
- <p><code class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">reference_column.nested_reference_column.value</span></code> というように「 <code class="docutils literal"><span class="pre">.</span></code> 」でつなげることで対象レコードから参照している値を使うことができます。</p>
3949
- <p><code class="docutils literal"><span class="pre">drilldown_calc_target</span></code> の使い方は <a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> を参照してください。</p>
3950
- <p><code class="docutils literal"><span class="pre">drilldown_calc_target</span></code> のデフォルト値は <code class="docutils literal"><span class="pre">null</span></code> です。これは計算対象カラムは何も指定されていないということです。</p>
3946
+ <p><a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> で <tt class="docutils literal"><span class="pre">MAX</span></tt> のように計算対象のカラムが必要な計算タイプを指定したにも関わらず <tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt> を省略すると、計算結果は常に <tt class="docutils literal"><span class="pre">0</span></tt> になります。</p>
3947
+ <p><tt class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">n_likes</span></tt> というように1つのカラム名だけしか指定できません。 <tt class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">_key,n_likes</span></tt> というように複数のカラムを指定することはできません。</p>
3948
+ <p><tt class="docutils literal"><span class="pre">--drilldown_calc_target</span> <span class="pre">reference_column.nested_reference_column.value</span></tt> というように「 <tt class="docutils literal"><span class="pre">.</span></tt> 」でつなげることで対象レコードから参照している値を使うことができます。</p>
3949
+ <p><tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt> の使い方は <a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a> を参照してください。</p>
3950
+ <p><tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt> のデフォルト値は <tt class="docutils literal"><span class="pre">null</span></tt> です。これは計算対象カラムは何も指定されていないということです。</p>
3951
3951
  </div>
3952
3952
  </div>
3953
3953
  <div class="section" id="advanced-drilldown-related-parameters">
3954
- <span id="select-advanced-drilldown-related-parameters"></span><h3>7.3.29.4.6. 高度なドリルダウン関連の引数<a class="headerlink" href="#advanced-drilldown-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
3954
+ <span id="select-advanced-drilldown-related-parameters"></span><h3>7.3.33.4.6. 高度なドリルダウン関連の引数<a class="headerlink" href="#advanced-drilldown-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
3955
3955
  <p><a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> に複数のグループキーを指定することで複数のドリルダウン結果を取得できます。しかし、すべてのドリルダウンで同じ設定を使う必要があります。例えば、すべてのドリルダウンで同じ <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> の値が使われます。</p>
3956
3956
  <p>以下の引数を使うことで、各ドリルダウンで別々の設定を使うことができます。</p>
3957
3957
  <blockquote>
3958
3958
  <div><ul class="simple">
3959
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code></li>
3960
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code></li>
3961
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code></li>
3962
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code></li>
3963
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code></li>
3964
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code></li>
3965
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code></li>
3959
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt></li>
3960
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></tt></li>
3961
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt></li>
3962
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></tt></li>
3963
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></tt></li>
3964
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></tt></li>
3965
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></tt></li>
3966
3966
  </ul>
3967
3967
  </div></blockquote>
3968
- <p><code class="docutils literal"><span class="pre">${LABEL}</span></code> は変数です。 <code class="docutils literal"><span class="pre">${LABEL}</span></code> には次の文字を使うことができます。</p>
3968
+ <p><tt class="docutils literal"><span class="pre">${LABEL}</span></tt> は変数です。 <tt class="docutils literal"><span class="pre">${LABEL}</span></tt> には次の文字を使うことができます。</p>
3969
3969
  <blockquote>
3970
3970
  <div><ul class="simple">
3971
3971
  <li><p class="first">アルファベット</p>
3972
3972
  </li>
3973
3973
  <li><p class="first">数字</p>
3974
3974
  </li>
3975
- <li><code class="docutils literal"><span class="pre">.</span></code></li>
3976
- <li><code class="docutils literal"><span class="pre">_</span></code></li>
3975
+ <li><tt class="docutils literal"><span class="pre">.</span></tt></li>
3976
+ <li><tt class="docutils literal"><span class="pre">_</span></tt></li>
3977
3977
  </ul>
3978
3978
  </div></blockquote>
3979
- <p>同じ <code class="docutils literal"><span class="pre">${LABEL}</span></code> の値を持つ引数は同じグループになります。1つのドリルダウンで同じグループの引数を一緒に使います。</p>
3979
+ <p>同じ <tt class="docutils literal"><span class="pre">${LABEL}</span></tt> の値を持つ引数は同じグループになります。1つのドリルダウンで同じグループの引数を一緒に使います。</p>
3980
3980
  <p>例えば、以下の引数は2つのグループにわかれます。</p>
3981
3981
  <blockquote>
3982
3982
  <div><ul class="simple">
3983
- <li><code class="docutils literal"><span class="pre">--drilldown[label1].keys</span> <span class="pre">_key</span></code></li>
3984
- <li><code class="docutils literal"><span class="pre">--drilldown[label1].output_columns</span> <span class="pre">_nsubrecs</span></code></li>
3985
- <li><code class="docutils literal"><span class="pre">--drilldown[label2].keys</span> <span class="pre">tag</span></code></li>
3986
- <li><code class="docutils literal"><span class="pre">--drilldown[label2].output_columns</span> <span class="pre">_key,_nsubrecs</span></code></li>
3983
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label1].keys</span> <span class="pre">_key</span></tt></li>
3984
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label1].output_columns</span> <span class="pre">_nsubrecs</span></tt></li>
3985
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label2].keys</span> <span class="pre">tag</span></tt></li>
3986
+ <li><tt class="docutils literal"><span class="pre">--drilldown[label2].output_columns</span> <span class="pre">_key,_nsubrecs</span></tt></li>
3987
3987
  </ul>
3988
3988
  </div></blockquote>
3989
- <p><code class="docutils literal"><span class="pre">drilldown[label1].keys</span></code> と <code class="docutils literal"><span class="pre">drilldown[label1].output_columns</span></code> が同じグループです。 <code class="docutils literal"><span class="pre">drilldown[label2].keys</span></code> と <code class="docutils literal"><span class="pre">drilldown[label2].output_columns</span></code> は別のグループです。</p>
3990
- <p><code class="docutils literal"><span class="pre">label1</span></code> グループでは、グループキーとして <code class="docutils literal"><span class="pre">_key</span></code> を使って、出力カラムとして <code class="docutils literal"><span class="pre">_nsubrecs</span></code> を使います。</p>
3991
- <p><code class="docutils literal"><span class="pre">label2</span></code> グループでは、グループキーとして <code class="docutils literal"><span class="pre">tag</span></code> を使って、出力カラムとして <code class="docutils literal"><span class="pre">_key,_nsubrecs</span></code> を使います。</p>
3992
- <p>以下の引数の使い方は対応する <code class="docutils literal"><span class="pre">drilldown_XXX</span></code> 引数のドキュメントを参照してください。</p>
3989
+ <p><tt class="docutils literal"><span class="pre">drilldown[label1].keys</span></tt> と <tt class="docutils literal"><span class="pre">drilldown[label1].output_columns</span></tt> が同じグループです。 <tt class="docutils literal"><span class="pre">drilldown[label2].keys</span></tt> と <tt class="docutils literal"><span class="pre">drilldown[label2].output_columns</span></tt> は別のグループです。</p>
3990
+ <p><tt class="docutils literal"><span class="pre">label1</span></tt> グループでは、グループキーとして <tt class="docutils literal"><span class="pre">_key</span></tt> を使って、出力カラムとして <tt class="docutils literal"><span class="pre">_nsubrecs</span></tt> を使います。</p>
3991
+ <p><tt class="docutils literal"><span class="pre">label2</span></tt> グループでは、グループキーとして <tt class="docutils literal"><span class="pre">tag</span></tt> を使って、出力カラムとして <tt class="docutils literal"><span class="pre">_key,_nsubrecs</span></tt> を使います。</p>
3992
+ <p>以下の引数の使い方は対応する <tt class="docutils literal"><span class="pre">drilldown_XXX</span></tt> 引数のドキュメントを参照してください。</p>
3993
3993
  <blockquote>
3994
3994
  <div><ul class="simple">
3995
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code>: <a class="reference internal" href="#select-drilldown-sortby"><em>drilldown_sortby</em></a></li>
3996
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code>: <a class="reference internal" href="#select-drilldown-offset"><em>drilldown_offset</em></a></li>
3997
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code>: <a class="reference internal" href="#select-drilldown-limit"><em>drilldown_limit</em></a></li>
3998
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code>: <a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a></li>
3999
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code>: <a class="reference internal" href="#select-drilldown-calc-target"><em>drilldown_calc_target</em></a></li>
3995
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></tt>: <a class="reference internal" href="#select-drilldown-sortby"><em>drilldown_sortby</em></a></li>
3996
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></tt>: <a class="reference internal" href="#select-drilldown-offset"><em>drilldown_offset</em></a></li>
3997
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></tt>: <a class="reference internal" href="#select-drilldown-limit"><em>drilldown_limit</em></a></li>
3998
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></tt>: <a class="reference internal" href="#select-drilldown-calc-types"><em>drilldown_calc_types</em></a></li>
3999
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></tt>: <a class="reference internal" href="#select-drilldown-calc-target"><em>drilldown_calc_target</em></a></li>
4000
4000
  </ul>
4001
4001
  </div></blockquote>
4002
4002
  <p>以下の引数は追加の説明が必要です。</p>
4003
4003
  <blockquote>
4004
4004
  <div><ul class="simple">
4005
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code></li>
4006
- <li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code></li>
4005
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt></li>
4006
+ <li><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt></li>
4007
4007
  </ul>
4008
4008
  </div></blockquote>
4009
4009
  <p>出力フォーマットは少し違います。これも追加の説明が必要です。</p>
4010
4010
  <div class="section" id="drilldown-label-keys">
4011
- <span id="select-drilldown-label-keys"></span><h4>7.3.29.4.6.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code><a class="headerlink" href="#drilldown-label-keys" title="このヘッドラインへのパーマリンク">¶</a></h4>
4011
+ <span id="select-drilldown-label-keys"></span><h4>7.3.33.4.6.1. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt><a class="headerlink" href="#drilldown-label-keys" title="このヘッドラインへのパーマリンク">¶</a></h4>
4012
4012
  <p><a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> は複数のキーを指定して複数のドリルダウンを指定できます。しかし、1つのドリルダウンに複数のキーを指定することはできません。</p>
4013
- <p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> は複数のキーを指定して複数のドリルダウンを指定することはできません。しかし、1つのドリルダウンに複数のキーを指定することができます。</p>
4014
- <p>複数のキーを <code class="docutils literal"><span class="pre">,</span></code> 区切りで指定します。</p>
4015
- <p>以下は <code class="docutils literal"><span class="pre">tag</span></code> カラムと <code class="docutils literal"><span class="pre">n_likes</span></code> カラムの値を使った複数キーでのグループ化の例です。</p>
4013
+ <p><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> は複数のキーを指定して複数のドリルダウンを指定することはできません。しかし、1つのドリルダウンに複数のキーを指定することができます。</p>
4014
+ <p>複数のキーを <tt class="docutils literal"><span class="pre">,</span></tt> 区切りで指定します。</p>
4015
+ <p>以下は <tt class="docutils literal"><span class="pre">tag</span></tt> カラムと <tt class="docutils literal"><span class="pre">n_likes</span></tt> カラムの値を使った複数キーでのグループ化の例です。</p>
4016
4016
  <p>実行例:</p>
4017
4017
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4018
4018
  --limit -1 \
@@ -4133,14 +4133,14 @@ load --table Items
4133
4133
  # ]
4134
4134
  </pre></div>
4135
4135
  </div>
4136
- <p><code class="docutils literal"><span class="pre">tag.n_likes</span></code> はドリルダウン引数グループのラベルです。グループ化に使ったそれぞれのキーを参照するときは <a class="reference internal" href="#select-drilldown-label-output-columns"><em>drilldown[${LABEL}].output_columns</em></a> で <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> という構文を使います。 <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> にはグループキーを指定したときに使ったカラム名を使います。この場合は <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> に <code class="docutils literal"><span class="pre">tag</span></code> と <code class="docutils literal"><span class="pre">n_keys</span></code> を使います。</p>
4137
- <p><code class="docutils literal"><span class="pre">--drilldown[tag].keys</span> <span class="pre">tag</span></code> のように <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> にキーを1つだけしか指定していない場合は <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文を使うことはできません。この場合は <code class="docutils literal"><span class="pre">_key</span></code> を使ってください。これは、 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と同じルールです。</p>
4136
+ <p><tt class="docutils literal"><span class="pre">tag.n_likes</span></tt> はドリルダウン引数グループのラベルです。グループ化に使ったそれぞれのキーを参照するときは <a class="reference internal" href="#select-drilldown-label-output-columns"><em>drilldown[${LABEL}].output_columns</em></a> で <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> という構文を使います。 <tt class="docutils literal"><span class="pre">${KEY_NAME}</span></tt> にはグループキーを指定したときに使ったカラム名を使います。この場合は <tt class="docutils literal"><span class="pre">${KEY_NAME}</span></tt> に <tt class="docutils literal"><span class="pre">tag</span></tt> と <tt class="docutils literal"><span class="pre">n_keys</span></tt> を使います。</p>
4137
+ <p><tt class="docutils literal"><span class="pre">--drilldown[tag].keys</span> <span class="pre">tag</span></tt> のように <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt> にキーを1つだけしか指定していない場合は <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文を使うことはできません。この場合は <tt class="docutils literal"><span class="pre">_key</span></tt> を使ってください。これは、 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と同じルールです。</p>
4138
4138
  </div>
4139
4139
  <div class="section" id="drilldown-label-output-columns">
4140
- <span id="select-drilldown-label-output-columns"></span><h4>7.3.29.4.6.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code><a class="headerlink" href="#drilldown-label-output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
4141
- <p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> はほとんど <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と同じです。 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> の違いはグループキーの参照方法です。</p>
4142
- <p><a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> はグループキーを参照するために <code class="docutils literal"><span class="pre">_key</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使います。 <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> も <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> で1つだけしかグループキーを指定していない場合は、グループキーを参照するために <code class="docutils literal"><span class="pre">_key</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使います。</p>
4143
- <p>以下は1つだけ指定したグループキーを参照するために <code class="docutils literal"><span class="pre">_key</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使う例です。</p>
4140
+ <span id="select-drilldown-label-output-columns"></span><h4>7.3.33.4.6.2. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt><a class="headerlink" href="#drilldown-label-output-columns" title="このヘッドラインへのパーマリンク">¶</a></h4>
4141
+ <p><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt> はほとんど <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と同じです。 <a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> と <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt> の違いはグループキーの参照方法です。</p>
4142
+ <p><a class="reference internal" href="#select-drilldown-output-columns"><em>drilldown_output_columns</em></a> はグループキーを参照するために <tt class="docutils literal"><span class="pre">_key</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使います。 <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt> も <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> で1つだけしかグループキーを指定していない場合は、グループキーを参照するために <tt class="docutils literal"><span class="pre">_key</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使います。</p>
4143
+ <p>以下は1つだけ指定したグループキーを参照するために <tt class="docutils literal"><span class="pre">_key</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使う例です。</p>
4144
4144
  <p>実行例:</p>
4145
4145
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4146
4146
  --limit 0 \
@@ -4218,8 +4218,8 @@ load --table Items
4218
4218
  # ]
4219
4219
  </pre></div>
4220
4220
  </div>
4221
- <p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> で各グループキーを参照するために <code class="docutils literal"><span class="pre">_key</span></code> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使うことはできません。 <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文を使います。 <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> には <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> でグループキーを指定するために使ったカラム名を使います。</p>
4222
- <p>以下は複数のグループキーを使ったときに <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文でそれぞれのグループキーを参照する例です。</p>
4221
+ <p><tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt> で各グループキーを参照するために <tt class="docutils literal"><span class="pre">_key</span></tt> <a class="reference internal" href="../columns/pseudo.html"><em>擬似カラム</em></a> を使うことはできません。 <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文を使います。 <tt class="docutils literal"><span class="pre">${KEY_NAME}</span></tt> には <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> でグループキーを指定するために使ったカラム名を使います。</p>
4222
+ <p>以下は複数のグループキーを使ったときに <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文でそれぞれのグループキーを参照する例です。</p>
4223
4223
  <p>実行例:</p>
4224
4224
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4225
4225
  --limit 0 \
@@ -4299,15 +4299,15 @@ load --table Items
4299
4299
  </div>
4300
4300
  <div class="admonition tip">
4301
4301
  <p class="first admonition-title">ちなみに</p>
4302
- <p>どうして <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文なの?</p>
4302
+ <p>どうして <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文なの?</p>
4303
4303
  <p>これは実装よりの情報です。</p>
4304
- <p><code class="docutils literal"><span class="pre">_key</span></code> はベクターの値です。このベクターの値はすべてのグループキーから成ります。 <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> で <code class="docutils literal"><span class="pre">_key</span></code> を参照するとこのベクターの値のバイト列を確認することができます。</p>
4305
- <p><a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> に複数のグループキーを指定したとき、各グループの値を参照するために <code class="docutils literal"><span class="pre">_value</span></code> にグループのレコードが1つだけ保存されています。そのため、各グループキーを参照するために <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文を使えます。</p>
4306
- <p class="last">一方、 <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> に1つのグループキーしか指定していない場合は、 <code class="docutils literal"><span class="pre">_value</span></code> にグループのレコードを保存しません。そのため、 <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> 構文でグループキーを参照できません。</p>
4304
+ <p><tt class="docutils literal"><span class="pre">_key</span></tt> はベクターの値です。このベクターの値はすべてのグループキーから成ります。 <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt> で <tt class="docutils literal"><span class="pre">_key</span></tt> を参照するとこのベクターの値のバイト列を確認することができます。</p>
4305
+ <p><a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> に複数のグループキーを指定したとき、各グループの値を参照するために <tt class="docutils literal"><span class="pre">_value</span></tt> にグループのレコードが1つだけ保存されています。そのため、各グループキーを参照するために <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文を使えます。</p>
4306
+ <p class="last">一方、 <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> に1つのグループキーしか指定していない場合は、 <tt class="docutils literal"><span class="pre">_value</span></tt> にグループのレコードを保存しません。そのため、 <tt class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></tt> 構文でグループキーを参照できません。</p>
4307
4307
  </div>
4308
4308
  </div>
4309
4309
  <div class="section" id="output-format-for-drilldown-label-style">
4310
- <span id="select-drilldown-label-output-format"></span><h4>7.3.29.4.6.3. <code class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></code> スタイルの出力フォーマット<a class="headerlink" href="#output-format-for-drilldown-label-style" title="このヘッドラインへのパーマリンク">¶</a></h4>
4310
+ <span id="select-drilldown-label-output-format"></span><h4>7.3.33.4.6.3. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></tt> スタイルの出力フォーマット<a class="headerlink" href="#output-format-for-drilldown-label-style" title="このヘッドラインへのパーマリンク">¶</a></h4>
4311
4311
  <p><a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> と <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> には出力フォーマットに違いがあります。 <a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> は複数のドリルダウン結果を出力するために配列を使います。 <a class="reference internal" href="#select-drilldown-label-keys"><em>drilldown[${LABEL}].keys</em></a> は「ラベル」と「ドリルダウン結果」のペアの集まりを使います。</p>
4312
4312
  <p><a class="reference internal" href="#select-drilldown"><em>drilldown</em></a> の出力フォーマットは以下の通りです:</p>
4313
4313
  <div class="highlight-none"><div class="highlight"><pre>[
@@ -4338,44 +4338,44 @@ load --table Items
4338
4338
  </div>
4339
4339
  </div>
4340
4340
  <div class="section" id="cache-related-parameter">
4341
- <h3>7.3.29.4.7. キャッシュ関連の引数<a class="headerlink" href="#cache-related-parameter" title="このヘッドラインへのパーマリンク">¶</a></h3>
4341
+ <h3>7.3.33.4.7. キャッシュ関連の引数<a class="headerlink" href="#cache-related-parameter" title="このヘッドラインへのパーマリンク">¶</a></h3>
4342
4342
  <div class="section" id="cache">
4343
- <h4>7.3.29.4.7.1. <code class="docutils literal"><span class="pre">cache</span></code><a class="headerlink" href="#cache" title="このヘッドラインへのパーマリンク">¶</a></h4>
4343
+ <h4>7.3.33.4.7.1. <tt class="docutils literal"><span class="pre">cache</span></tt><a class="headerlink" href="#cache" title="このヘッドラインへのパーマリンク">¶</a></h4>
4344
4344
  <p>TODO: write in English and add example.</p>
4345
4345
  <p>クエリキャッシュに関する動作を設定します。</p>
4346
- <p><code class="docutils literal"><span class="pre">no</span></code></p>
4346
+ <p><tt class="docutils literal"><span class="pre">no</span></tt></p>
4347
4347
  <blockquote>
4348
4348
  <div>検索結果をクエリキャッシュに残しません。キャッシュして再利用される可能性が低いクエリに対して用います。キャッシュ容量は有限です。有効なキャッシュが多くヒットするために、このパラメータは有効です。</div></blockquote>
4349
4349
  </div>
4350
4350
  </div>
4351
4351
  <div class="section" id="score-related-parameters">
4352
- <h3>7.3.29.4.8. スコアー関連の引数<a class="headerlink" href="#score-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
4353
- <p>スコアー関連のパラメーターは <code class="docutils literal"><span class="pre">adjuster</span></code> だけです。</p>
4352
+ <h3>7.3.33.4.8. スコアー関連の引数<a class="headerlink" href="#score-related-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
4353
+ <p>スコアー関連のパラメーターは <tt class="docutils literal"><span class="pre">adjuster</span></tt> だけです。</p>
4354
4354
  <div class="section" id="adjuster">
4355
- <span id="select-adjuster"></span><h4>7.3.29.4.8.1. <code class="docutils literal"><span class="pre">adjuster</span></code><a class="headerlink" href="#adjuster" title="このヘッドラインへのパーマリンク">¶</a></h4>
4356
- <p>1つ以上のスコアー調整式(score adjust expression)を指定します。 <code class="docutils literal"><span class="pre">adjuster</span></code> は <code class="docutils literal"><span class="pre">query</span></code> または <code class="docutils literal"><span class="pre">filter</span></code> と一緒に使います。検索しないリクエストでは <code class="docutils literal"><span class="pre">adjuster</span></code> は動きません。</p>
4357
- <p><code class="docutils literal"><span class="pre">adjuster</span></code> を使うと特定のレコードのスコアーを増やすことができます。重要なレコードに高いスコアーをつけるために <code class="docutils literal"><span class="pre">adjuster</span></code> を使えます。</p>
4358
- <p>例えば、 <code class="docutils literal"><span class="pre">groonga</span></code> タグがついたレコードのスコアーを増やすために <code class="docutils literal"><span class="pre">adjuster</span></code> を使えます。</p>
4355
+ <span id="select-adjuster"></span><h4>7.3.33.4.8.1. <tt class="docutils literal"><span class="pre">adjuster</span></tt><a class="headerlink" href="#adjuster" title="このヘッドラインへのパーマリンク">¶</a></h4>
4356
+ <p>1つ以上のスコアー調整式(score adjust expression)を指定します。 <tt class="docutils literal"><span class="pre">adjuster</span></tt> は <tt class="docutils literal"><span class="pre">query</span></tt> または <tt class="docutils literal"><span class="pre">filter</span></tt> と一緒に使います。検索しないリクエストでは <tt class="docutils literal"><span class="pre">adjuster</span></tt> は動きません。</p>
4357
+ <p><tt class="docutils literal"><span class="pre">adjuster</span></tt> を使うと特定のレコードのスコアーを増やすことができます。重要なレコードに高いスコアーをつけるために <tt class="docutils literal"><span class="pre">adjuster</span></tt> を使えます。</p>
4358
+ <p>例えば、 <tt class="docutils literal"><span class="pre">groonga</span></tt> タグがついたレコードのスコアーを増やすために <tt class="docutils literal"><span class="pre">adjuster</span></tt> を使えます。</p>
4359
4359
  <p>以下が構文です:</p>
4360
4360
  <div class="highlight-none"><div class="highlight"><pre>--adjuster &quot;SCORE_ADJUST_EXPRESSION1 + SCORE_ADJUST_EXPRESSION2 + ...&quot;
4361
4361
  </pre></div>
4362
4362
  </div>
4363
- <p>以下が <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> の構文です:</p>
4363
+ <p>以下が <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> の構文です:</p>
4364
4364
  <div class="highlight-none"><div class="highlight"><pre>COLUMN @ &quot;KEYWORD&quot; * FACTOR
4365
4365
  </pre></div>
4366
4366
  </div>
4367
4367
  <p>以下のことに注意してください:</p>
4368
4368
  <blockquote>
4369
4369
  <div><ul class="simple">
4370
- <li><p class="first"><code class="docutils literal"><span class="pre">COLUMN</span></code> にはインデックスが張っていないといけません。</p>
4370
+ <li><p class="first"><tt class="docutils literal"><span class="pre">COLUMN</span></tt> にはインデックスが張っていないといけません。</p>
4371
4371
  </li>
4372
- <li><p class="first"><code class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></code> は文字列でないといけません。</p>
4372
+ <li><p class="first"><tt class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></tt> は文字列でないといけません。</p>
4373
4373
  </li>
4374
- <li><p class="first"><code class="docutils literal"><span class="pre">FACTOR</span></code> は正の整数でないといけません。</p>
4374
+ <li><p class="first"><tt class="docutils literal"><span class="pre">FACTOR</span></tt> は正の整数でないといけません。</p>
4375
4375
  </li>
4376
4376
  </ul>
4377
4377
  </div></blockquote>
4378
- <p>以下は1つだけ <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> を使った <code class="docutils literal"><span class="pre">adjuster</span></code> の使用例です。</p>
4378
+ <p>以下は1つだけ <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> を使った <tt class="docutils literal"><span class="pre">adjuster</span></tt> の使用例です。</p>
4379
4379
  <p>実行例:</p>
4380
4380
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4381
4381
  --filter true \
@@ -4436,9 +4436,9 @@ load --table Items
4436
4436
  # ]
4437
4437
  </pre></div>
4438
4438
  </div>
4439
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドはすべてのレコードにマッチします。それから、 <code class="docutils literal"><span class="pre">adjuster</span></code> を適用します。このアジャスターは <code class="docutils literal"><span class="pre">Entries.content</span></code> カラムの中に <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> を含むレコードのスコアーを5増やします。 <code class="docutils literal"><span class="pre">Entries.content</span></code> カラムに <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> が含まれているレコードは1つだけです。 <code class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></code> というキーのレコードです。このレコードのスコアーは6( <code class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">5</span></code> )になります。</p>
4440
- <p><code class="docutils literal"><span class="pre">FACTOR</span></code> は省略できます。 <code class="docutils literal"><span class="pre">FACTOR</span></code> を省略すると、1を指定したとみなします。</p>
4441
- <p><code class="docutils literal"><span class="pre">FACTOR</span></code> を省略した <code class="docutils literal"><span class="pre">adjuster</span></code> の使用例です。</p>
4439
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドはすべてのレコードにマッチします。それから、 <tt class="docutils literal"><span class="pre">adjuster</span></tt> を適用します。このアジャスターは <tt class="docutils literal"><span class="pre">Entries.content</span></tt> カラムの中に <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> を含むレコードのスコアーを5増やします。 <tt class="docutils literal"><span class="pre">Entries.content</span></tt> カラムに <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> が含まれているレコードは1つだけです。 <tt class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></tt> というキーのレコードです。このレコードのスコアーは6( <tt class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">5</span></tt> )になります。</p>
4440
+ <p><tt class="docutils literal"><span class="pre">FACTOR</span></tt> は省略できます。 <tt class="docutils literal"><span class="pre">FACTOR</span></tt> を省略すると、1を指定したとみなします。</p>
4441
+ <p><tt class="docutils literal"><span class="pre">FACTOR</span></tt> を省略した <tt class="docutils literal"><span class="pre">adjuster</span></tt> の使用例です。</p>
4442
4442
  <p>実行例:</p>
4443
4443
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4444
4444
  --filter true \
@@ -4499,8 +4499,8 @@ load --table Items
4499
4499
  # ]
4500
4500
  </pre></div>
4501
4501
  </div>
4502
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドの <code class="docutils literal"><span class="pre">adjuster</span></code> は <code class="docutils literal"><span class="pre">FACTOR</span></code> がありません。そのため、係数は1になります。 <code class="docutils literal"><span class="pre">Entries.content</span></code> カラムに <code class="docutils literal"><span class="pre">&quot;groonga&quot;</span></code> を含むレコードは1つだけです。キーが <code class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></code> のレコードです。このレコードのスコアーは2( <code class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">1</span></code> )になります。</p>
4503
- <p>複数の <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> を使った <code class="docutils literal"><span class="pre">adjuster</span></code> の使用例です。</p>
4502
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドの <tt class="docutils literal"><span class="pre">adjuster</span></tt> は <tt class="docutils literal"><span class="pre">FACTOR</span></tt> がありません。そのため、係数は1になります。 <tt class="docutils literal"><span class="pre">Entries.content</span></tt> カラムに <tt class="docutils literal"><span class="pre">&quot;groonga&quot;</span></tt> を含むレコードは1つだけです。キーが <tt class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></tt> のレコードです。このレコードのスコアーは2( <tt class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">1</span></tt> )になります。</p>
4503
+ <p>複数の <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> を使った <tt class="docutils literal"><span class="pre">adjuster</span></tt> の使用例です。</p>
4504
4504
  <p>実行例:</p>
4505
4505
  <div class="highlight-none"><div class="highlight"><pre>select Entries \
4506
4506
  --filter true \
@@ -4561,72 +4561,72 @@ load --table Items
4561
4561
  # ]
4562
4562
  </pre></div>
4563
4563
  </div>
4564
- <p>この <code class="docutils literal"><span class="pre">select</span></code> コマンドの <code class="docutils literal"><span class="pre">adjuster</span></code> には2つの <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> があります。最終的なスコアーの増分はすこれらの <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> のスコアーの合計になります。この <code class="docutils literal"><span class="pre">select</span></code> コマンドのすべての <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> はキーが <code class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></code> のレコードに適用されます。そのため、このレコードの最終的なスコアーの増分はすべての <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> の合計になります。</p>
4565
- <p>最初の <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> は <code class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;groonga&quot;</span> <span class="pre">*</span> <span class="pre">5</span></code> です。これは、スコアーを5増やします。</p>
4566
- <p>2番目の <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> は <code class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;started&quot;</span> <span class="pre">*</span> <span class="pre">3</span></code> です。これはスコアーを3増やします。</p>
4567
- <p>最終的なスコアーの増分は9( <code class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">5</span> <span class="pre">+</span> <span class="pre">3</span></code> )です。</p>
4568
- <p>1つの <code class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></code> は <code class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></code> に対して1つの係数を持ちます。これは、 <code class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></code> を持つすべてのレコードでスコアーの増加分は同じということです。 <code class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></code> を持つそれぞれのレコード毎にスコアーの増加分を変えることができます。これは検索スコアーをチューニングするときに便利です。詳細は <a class="reference internal" href="../columns/vector.html#weight-vector-column"><em>重み付きベクターカラム</em></a> を参照してください。</p>
4564
+ <p>この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドの <tt class="docutils literal"><span class="pre">adjuster</span></tt> には2つの <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> があります。最終的なスコアーの増分はすこれらの <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> のスコアーの合計になります。この <tt class="docutils literal"><span class="pre">select</span></tt> コマンドのすべての <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> はキーが <tt class="docutils literal"><span class="pre">&quot;Groonga&quot;</span></tt> のレコードに適用されます。そのため、このレコードの最終的なスコアーの増分はすべての <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> の合計になります。</p>
4565
+ <p>最初の <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> は <tt class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;groonga&quot;</span> <span class="pre">*</span> <span class="pre">5</span></tt> です。これは、スコアーを5増やします。</p>
4566
+ <p>2番目の <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> は <tt class="docutils literal"><span class="pre">content</span> <span class="pre">&#64;</span> <span class="pre">&quot;started&quot;</span> <span class="pre">*</span> <span class="pre">3</span></tt> です。これはスコアーを3増やします。</p>
4567
+ <p>最終的なスコアーの増分は9( <tt class="docutils literal"><span class="pre">=</span> <span class="pre">1</span> <span class="pre">+</span> <span class="pre">5</span> <span class="pre">+</span> <span class="pre">3</span></tt> )です。</p>
4568
+ <p>1つの <tt class="docutils literal"><span class="pre">SCORE_ADJUST_EXPRESSION</span></tt> は <tt class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></tt> に対して1つの係数を持ちます。これは、 <tt class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></tt> を持つすべてのレコードでスコアーの増加分は同じということです。 <tt class="docutils literal"><span class="pre">&quot;KEYWORD&quot;</span></tt> を持つそれぞれのレコード毎にスコアーの増加分を変えることができます。これは検索スコアーをチューニングするときに便利です。詳細は <a class="reference internal" href="../columns/vector.html#weight-vector-column"><em>重み付きベクターカラム</em></a> を参照してください。</p>
4569
4569
  </div>
4570
4570
  </div>
4571
4571
  </div>
4572
4572
  <div class="section" id="id7">
4573
- <h2>7.3.29.5. 返値<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
4573
+ <h2>7.3.33.5. 返値<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
4574
4574
  <p>TODO: write in English and add example.</p>
4575
4575
  <p>以下のようなjson形式で値が返却されます。</p>
4576
4576
  <div class="highlight-none"><div class="highlight"><pre>[[リターンコード, 処理開始時間, 処理時間], [検索結果, ドリルダウン結果]]
4577
4577
  </pre></div>
4578
4578
  </div>
4579
- <p><code class="docutils literal"><span class="pre">リターンコード</span></code></p>
4579
+ <p><tt class="docutils literal"><span class="pre">リターンコード</span></tt></p>
4580
4580
  <blockquote>
4581
4581
  <div>grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内容を示す
4582
4582
  文字列が返されます。</div></blockquote>
4583
- <p><code class="docutils literal"><span class="pre">処理開始時間</span></code></p>
4583
+ <p><tt class="docutils literal"><span class="pre">処理開始時間</span></tt></p>
4584
4584
  <blockquote>
4585
4585
  <div>処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返します。</div></blockquote>
4586
- <p><code class="docutils literal"><span class="pre">処理時間</span></code></p>
4586
+ <p><tt class="docutils literal"><span class="pre">処理時間</span></tt></p>
4587
4587
  <blockquote>
4588
4588
  <div>処理にかかった秒数を返します。</div></blockquote>
4589
- <p><code class="docutils literal"><span class="pre">検索結果</span></code></p>
4589
+ <p><tt class="docutils literal"><span class="pre">検索結果</span></tt></p>
4590
4590
  <blockquote>
4591
4591
  <div><p>drilldown条件が実行される前の検索結果が以下のように出力されます。:</p>
4592
4592
  <div class="highlight-none"><div class="highlight"><pre>[[ヒット数], [[カラム名1,カラム型1],..], 検索結果1,..]
4593
4593
  </pre></div>
4594
4594
  </div>
4595
- <p><code class="docutils literal"><span class="pre">ヒット数</span></code></p>
4595
+ <p><tt class="docutils literal"><span class="pre">ヒット数</span></tt></p>
4596
4596
  <blockquote>
4597
- <div>検索条件にヒットしたレコードの数が出力されます。 <code class="docutils literal"><span class="pre">--limit</span></code> オプションで出力件数を制限した場合は出力するレコード数と一致しません。 <code class="docutils literal"><span class="pre">ヒット数</span></code> は <code class="docutils literal"><span class="pre">--limit</span></code> オプションに関係なく常にヒットしたレコードの数になります。</div></blockquote>
4598
- <p><code class="docutils literal"><span class="pre">カラム名n</span></code></p>
4597
+ <div>検索条件にヒットしたレコードの数が出力されます。 <tt class="docutils literal"><span class="pre">--limit</span></tt> オプションで出力件数を制限した場合は出力するレコード数と一致しません。 <tt class="docutils literal"><span class="pre">ヒット数</span></tt> は <tt class="docutils literal"><span class="pre">--limit</span></tt> オプションに関係なく常にヒットしたレコードの数になります。</div></blockquote>
4598
+ <p><tt class="docutils literal"><span class="pre">カラム名n</span></tt></p>
4599
4599
  <blockquote>
4600
4600
  <div>output_columnsに指定された条件に従って、対象となるカラム名が出力されます。</div></blockquote>
4601
- <p><code class="docutils literal"><span class="pre">カラム型n</span></code></p>
4601
+ <p><tt class="docutils literal"><span class="pre">カラム型n</span></tt></p>
4602
4602
  <blockquote>
4603
4603
  <div>output_columnsに指定された条件に従って、対象となるカラム型が出力されます。</div></blockquote>
4604
- <p><code class="docutils literal"><span class="pre">検索結果n</span></code></p>
4604
+ <p><tt class="docutils literal"><span class="pre">検索結果n</span></tt></p>
4605
4605
  <blockquote>
4606
4606
  <div>output_columns, offset, limitによって指定された条件に従って各レコードの値が出力されます。</div></blockquote>
4607
4607
  </div></blockquote>
4608
- <p><code class="docutils literal"><span class="pre">drilldown結果</span></code></p>
4608
+ <p><tt class="docutils literal"><span class="pre">drilldown結果</span></tt></p>
4609
4609
  <blockquote>
4610
4610
  <div><p>drilldown処理の結果が以下のように出力されます。:</p>
4611
4611
  <div class="highlight-none"><div class="highlight"><pre>[[[件数], [[カラム名1,カラム型1],..], 検索結果1,..],..]
4612
4612
  </pre></div>
4613
4613
  </div>
4614
- <p><code class="docutils literal"><span class="pre">件数</span></code></p>
4614
+ <p><tt class="docutils literal"><span class="pre">件数</span></tt></p>
4615
4615
  <blockquote>
4616
4616
  <div>drilldownに指定されたカラムの値の異なり数が出力されます。</div></blockquote>
4617
- <p><code class="docutils literal"><span class="pre">カラム名n</span></code></p>
4617
+ <p><tt class="docutils literal"><span class="pre">カラム名n</span></tt></p>
4618
4618
  <blockquote>
4619
4619
  <div>drilldown_output_columnsに指定された条件に従って、対象となるカラム名が出力されます。</div></blockquote>
4620
- <p><code class="docutils literal"><span class="pre">カラム型n</span></code></p>
4620
+ <p><tt class="docutils literal"><span class="pre">カラム型n</span></tt></p>
4621
4621
  <blockquote>
4622
4622
  <div>drilldown_output_columnsに指定された条件に従って、対象となるカラム型が出力されます。</div></blockquote>
4623
- <p><code class="docutils literal"><span class="pre">ドリルダウン結果n</span></code></p>
4623
+ <p><tt class="docutils literal"><span class="pre">ドリルダウン結果n</span></tt></p>
4624
4624
  <blockquote>
4625
4625
  <div>drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された条件に従って各レコードの値が出力されます。</div></blockquote>
4626
4626
  </div></blockquote>
4627
4627
  </div>
4628
4628
  <div class="section" id="see-also">
4629
- <h2>7.3.29.6. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
4629
+ <h2>7.3.33.6. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
4630
4630
  <blockquote>
4631
4631
  <div><ul class="simple">
4632
4632
  <li><a class="reference internal" href="../grn_expr/query_syntax.html"><em>クエリー構文</em></a></li>
@@ -4640,97 +4640,95 @@ load --table Items
4640
4640
  </div>
4641
4641
  </div>
4642
4642
  </div>
4643
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
4643
+ <div class="sphinxsidebar">
4644
4644
  <div class="sphinxsidebarwrapper">
4645
4645
  <h3><a href="../../index.html">目次</a></h3>
4646
4646
  <ul>
4647
- <li><a class="reference internal" href="#">7.3.29. <code class="docutils literal"><span class="pre">select</span></code></a><ul>
4648
- <li><a class="reference internal" href="#summary">7.3.29.1. 概要</a></li>
4649
- <li><a class="reference internal" href="#syntax">7.3.29.2. 構文</a></li>
4650
- <li><a class="reference internal" href="#usage">7.3.29.3. 使い方</a><ul>
4651
- <li><a class="reference internal" href="#simple-usage">7.3.29.3.1. 簡単な使い方</a></li>
4652
- <li><a class="reference internal" href="#search-conditions">7.3.29.3.2. 検索条件</a><ul>
4653
- <li><a class="reference internal" href="#search-condition-query">7.3.29.3.2.1. 検索条件: <code class="docutils literal"><span class="pre">query</span></code></a></li>
4654
- <li><a class="reference internal" href="#search-condition-filter">7.3.29.3.2.2. 検索条件: <code class="docutils literal"><span class="pre">filter</span></code></a></li>
4647
+ <li><a class="reference internal" href="#">7.3.33. <tt class="docutils literal"><span class="pre">select</span></tt></a><ul>
4648
+ <li><a class="reference internal" href="#summary">7.3.33.1. 概要</a></li>
4649
+ <li><a class="reference internal" href="#syntax">7.3.33.2. 構文</a></li>
4650
+ <li><a class="reference internal" href="#usage">7.3.33.3. 使い方</a><ul>
4651
+ <li><a class="reference internal" href="#simple-usage">7.3.33.3.1. 簡単な使い方</a></li>
4652
+ <li><a class="reference internal" href="#search-conditions">7.3.33.3.2. 検索条件</a><ul>
4653
+ <li><a class="reference internal" href="#search-condition-query">7.3.33.3.2.1. 検索条件: <tt class="docutils literal"><span class="pre">query</span></tt></a></li>
4654
+ <li><a class="reference internal" href="#search-condition-filter">7.3.33.3.2.2. 検索条件: <tt class="docutils literal"><span class="pre">filter</span></tt></a></li>
4655
4655
  </ul>
4656
4656
  </li>
4657
- <li><a class="reference internal" href="#paging">7.3.29.3.3. ページング</a></li>
4658
- <li><a class="reference internal" href="#the-total-number-of-records">7.3.29.3.4. 全レコード数</a></li>
4659
- <li><a class="reference internal" href="#drilldown">7.3.29.3.5. ドリルダウン</a></li>
4657
+ <li><a class="reference internal" href="#paging">7.3.33.3.3. ページング</a></li>
4658
+ <li><a class="reference internal" href="#the-total-number-of-records">7.3.33.3.4. 全レコード数</a></li>
4659
+ <li><a class="reference internal" href="#drilldown">7.3.33.3.5. ドリルダウン</a></li>
4660
4660
  </ul>
4661
4661
  </li>
4662
- <li><a class="reference internal" href="#parameters">7.3.29.4. 引数</a><ul>
4663
- <li><a class="reference internal" href="#required-parameter">7.3.29.4.1. 必須引数</a><ul>
4664
- <li><a class="reference internal" href="#table">7.3.29.4.1.1. <code class="docutils literal"><span class="pre">table</span></code></a></li>
4662
+ <li><a class="reference internal" href="#parameters">7.3.33.4. 引数</a><ul>
4663
+ <li><a class="reference internal" href="#required-parameter">7.3.33.4.1. 必須引数</a><ul>
4664
+ <li><a class="reference internal" href="#table">7.3.33.4.1.1. <tt class="docutils literal"><span class="pre">table</span></tt></a></li>
4665
4665
  </ul>
4666
4666
  </li>
4667
- <li><a class="reference internal" href="#search-related-parameters">7.3.29.4.2. 検索関係の引数</a><ul>
4668
- <li><a class="reference internal" href="#match-columns">7.3.29.4.2.1. <code class="docutils literal"><span class="pre">match_columns</span></code></a></li>
4669
- <li><a class="reference internal" href="#query">7.3.29.4.2.2. <code class="docutils literal"><span class="pre">query</span></code></a></li>
4670
- <li><a class="reference internal" href="#filter">7.3.29.4.2.3. <code class="docutils literal"><span class="pre">filter</span></code></a></li>
4667
+ <li><a class="reference internal" href="#search-related-parameters">7.3.33.4.2. 検索関係の引数</a><ul>
4668
+ <li><a class="reference internal" href="#match-columns">7.3.33.4.2.1. <tt class="docutils literal"><span class="pre">match_columns</span></tt></a></li>
4669
+ <li><a class="reference internal" href="#query">7.3.33.4.2.2. <tt class="docutils literal"><span class="pre">query</span></tt></a></li>
4670
+ <li><a class="reference internal" href="#filter">7.3.33.4.2.3. <tt class="docutils literal"><span class="pre">filter</span></tt></a></li>
4671
4671
  </ul>
4672
4672
  </li>
4673
- <li><a class="reference internal" href="#advanced-search-parameters">7.3.29.4.3. 高度な検索のための引数</a><ul>
4674
- <li><a class="reference internal" href="#match-escalation-threshold">7.3.29.4.3.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code></a></li>
4675
- <li><a class="reference internal" href="#query-expansion">7.3.29.4.3.2. <code class="docutils literal"><span class="pre">query_expansion</span></code></a></li>
4676
- <li><a class="reference internal" href="#query-flags">7.3.29.4.3.3. <code class="docutils literal"><span class="pre">query_flags</span></code></a></li>
4677
- <li><a class="reference internal" href="#query-expander">7.3.29.4.3.4. <code class="docutils literal"><span class="pre">query_expander</span></code></a></li>
4673
+ <li><a class="reference internal" href="#advanced-search-parameters">7.3.33.4.3. 高度な検索のための引数</a><ul>
4674
+ <li><a class="reference internal" href="#match-escalation-threshold">7.3.33.4.3.1. <tt class="docutils literal"><span class="pre">match_escalation_threshold</span></tt></a></li>
4675
+ <li><a class="reference internal" href="#query-expansion">7.3.33.4.3.2. <tt class="docutils literal"><span class="pre">query_expansion</span></tt></a></li>
4676
+ <li><a class="reference internal" href="#query-flags">7.3.33.4.3.3. <tt class="docutils literal"><span class="pre">query_flags</span></tt></a></li>
4677
+ <li><a class="reference internal" href="#query-expander">7.3.33.4.3.4. <tt class="docutils literal"><span class="pre">query_expander</span></tt></a></li>
4678
4678
  </ul>
4679
4679
  </li>
4680
- <li><a class="reference internal" href="#output-related-parameters">7.3.29.4.4. 出力関連の引数</a><ul>
4681
- <li><a class="reference internal" href="#output-columns">7.3.29.4.4.1. <code class="docutils literal"><span class="pre">output_columns</span></code></a></li>
4682
- <li><a class="reference internal" href="#sortby">7.3.29.4.4.2. <code class="docutils literal"><span class="pre">sortby</span></code></a></li>
4683
- <li><a class="reference internal" href="#offset">7.3.29.4.4.3. <code class="docutils literal"><span class="pre">offset</span></code></a></li>
4684
- <li><a class="reference internal" href="#limit">7.3.29.4.4.4. <code class="docutils literal"><span class="pre">limit</span></code></a></li>
4685
- <li><a class="reference internal" href="#scorer">7.3.29.4.4.5. <code class="docutils literal"><span class="pre">scorer</span></code></a></li>
4680
+ <li><a class="reference internal" href="#output-related-parameters">7.3.33.4.4. 出力関連の引数</a><ul>
4681
+ <li><a class="reference internal" href="#output-columns">7.3.33.4.4.1. <tt class="docutils literal"><span class="pre">output_columns</span></tt></a></li>
4682
+ <li><a class="reference internal" href="#sortby">7.3.33.4.4.2. <tt class="docutils literal"><span class="pre">sortby</span></tt></a></li>
4683
+ <li><a class="reference internal" href="#offset">7.3.33.4.4.3. <tt class="docutils literal"><span class="pre">offset</span></tt></a></li>
4684
+ <li><a class="reference internal" href="#limit">7.3.33.4.4.4. <tt class="docutils literal"><span class="pre">limit</span></tt></a></li>
4685
+ <li><a class="reference internal" href="#scorer">7.3.33.4.4.5. <tt class="docutils literal"><span class="pre">scorer</span></tt></a></li>
4686
4686
  </ul>
4687
4687
  </li>
4688
- <li><a class="reference internal" href="#drilldown-related-parameters">7.3.29.4.5. ドリルダウン関連の引数</a><ul>
4689
- <li><a class="reference internal" href="#select-drilldown">7.3.29.4.5.1. <code class="docutils literal"><span class="pre">drilldown</span></code></a></li>
4690
- <li><a class="reference internal" href="#drilldown-sortby">7.3.29.4.5.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code></a></li>
4691
- <li><a class="reference internal" href="#drilldown-output-columns">7.3.29.4.5.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code></a></li>
4692
- <li><a class="reference internal" href="#drilldown-offset">7.3.29.4.5.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code></a></li>
4693
- <li><a class="reference internal" href="#drilldown-limit">7.3.29.4.5.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code></a></li>
4694
- <li><a class="reference internal" href="#drilldown-calc-types">7.3.29.4.5.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code></a></li>
4695
- <li><a class="reference internal" href="#drilldown-calc-target">7.3.29.4.5.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code></a></li>
4688
+ <li><a class="reference internal" href="#drilldown-related-parameters">7.3.33.4.5. ドリルダウン関連の引数</a><ul>
4689
+ <li><a class="reference internal" href="#select-drilldown">7.3.33.4.5.1. <tt class="docutils literal"><span class="pre">drilldown</span></tt></a></li>
4690
+ <li><a class="reference internal" href="#drilldown-sortby">7.3.33.4.5.2. <tt class="docutils literal"><span class="pre">drilldown_sortby</span></tt></a></li>
4691
+ <li><a class="reference internal" href="#drilldown-output-columns">7.3.33.4.5.3. <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt></a></li>
4692
+ <li><a class="reference internal" href="#drilldown-offset">7.3.33.4.5.4. <tt class="docutils literal"><span class="pre">drilldown_offset</span></tt></a></li>
4693
+ <li><a class="reference internal" href="#drilldown-limit">7.3.33.4.5.5. <tt class="docutils literal"><span class="pre">drilldown_limit</span></tt></a></li>
4694
+ <li><a class="reference internal" href="#drilldown-calc-types">7.3.33.4.5.6. <tt class="docutils literal"><span class="pre">drilldown_calc_types</span></tt></a></li>
4695
+ <li><a class="reference internal" href="#drilldown-calc-target">7.3.33.4.5.7. <tt class="docutils literal"><span class="pre">drilldown_calc_target</span></tt></a></li>
4696
4696
  </ul>
4697
4697
  </li>
4698
- <li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.29.4.6. 高度なドリルダウン関連の引数</a><ul>
4699
- <li><a class="reference internal" href="#drilldown-label-keys">7.3.29.4.6.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code></a></li>
4700
- <li><a class="reference internal" href="#drilldown-label-output-columns">7.3.29.4.6.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code></a></li>
4701
- <li><a class="reference internal" href="#output-format-for-drilldown-label-style">7.3.29.4.6.3. <code class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></code> スタイルの出力フォーマット</a></li>
4698
+ <li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.33.4.6. 高度なドリルダウン関連の引数</a><ul>
4699
+ <li><a class="reference internal" href="#drilldown-label-keys">7.3.33.4.6.1. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></tt></a></li>
4700
+ <li><a class="reference internal" href="#drilldown-label-output-columns">7.3.33.4.6.2. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></tt></a></li>
4701
+ <li><a class="reference internal" href="#output-format-for-drilldown-label-style">7.3.33.4.6.3. <tt class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></tt> スタイルの出力フォーマット</a></li>
4702
4702
  </ul>
4703
4703
  </li>
4704
- <li><a class="reference internal" href="#cache-related-parameter">7.3.29.4.7. キャッシュ関連の引数</a><ul>
4705
- <li><a class="reference internal" href="#cache">7.3.29.4.7.1. <code class="docutils literal"><span class="pre">cache</span></code></a></li>
4704
+ <li><a class="reference internal" href="#cache-related-parameter">7.3.33.4.7. キャッシュ関連の引数</a><ul>
4705
+ <li><a class="reference internal" href="#cache">7.3.33.4.7.1. <tt class="docutils literal"><span class="pre">cache</span></tt></a></li>
4706
4706
  </ul>
4707
4707
  </li>
4708
- <li><a class="reference internal" href="#score-related-parameters">7.3.29.4.8. スコアー関連の引数</a><ul>
4709
- <li><a class="reference internal" href="#adjuster">7.3.29.4.8.1. <code class="docutils literal"><span class="pre">adjuster</span></code></a></li>
4708
+ <li><a class="reference internal" href="#score-related-parameters">7.3.33.4.8. スコアー関連の引数</a><ul>
4709
+ <li><a class="reference internal" href="#adjuster">7.3.33.4.8.1. <tt class="docutils literal"><span class="pre">adjuster</span></tt></a></li>
4710
4710
  </ul>
4711
4711
  </li>
4712
4712
  </ul>
4713
4713
  </li>
4714
- <li><a class="reference internal" href="#id7">7.3.29.5. 返値</a></li>
4715
- <li><a class="reference internal" href="#see-also">7.3.29.6. 参考</a></li>
4714
+ <li><a class="reference internal" href="#id7">7.3.33.5. 返値</a></li>
4715
+ <li><a class="reference internal" href="#see-also">7.3.33.6. 参考</a></li>
4716
4716
  </ul>
4717
4717
  </li>
4718
4718
  </ul>
4719
4719
 
4720
4720
  <h4>前のトピックへ</h4>
4721
4721
  <p class="topless"><a href="ruby_load.html"
4722
- title="前の章へ">7.3.28. <code class="docutils literal"><span class="pre">ruby_load</span></code></a></p>
4722
+ title="前の章へ">7.3.32. <tt class="docutils literal"><span class="pre">ruby_load</span></tt></a></p>
4723
4723
  <h4>次のトピックへ</h4>
4724
4724
  <p class="topless"><a href="shutdown.html"
4725
- title="次の章へ">7.3.30. <code class="docutils literal"><span class="pre">shutdown</span></code></a></p>
4726
- <div role="note" aria-label="source link">
4727
- <h3>このページ</h3>
4728
- <ul class="this-page-menu">
4729
- <li><a href="../../_sources/reference/commands/select.txt"
4730
- rel="nofollow">ソースコードを表示</a></li>
4731
- </ul>
4732
- </div>
4733
- <div id="searchbox" style="display: none" role="search">
4725
+ title="次の章へ">7.3.34. <tt class="docutils literal"><span class="pre">shutdown</span></tt></a></p>
4726
+ <h3>このページ</h3>
4727
+ <ul class="this-page-menu">
4728
+ <li><a href="../../_sources/reference/commands/select.txt"
4729
+ rel="nofollow">ソースコードを表示</a></li>
4730
+ </ul>
4731
+ <div id="searchbox" style="display: none">
4734
4732
  <h3>クイック検索</h3>
4735
4733
  <form class="search" action="../../search.html" method="get">
4736
4734
  <input type="text" name="q" />
@@ -4747,24 +4745,24 @@ load --table Items
4747
4745
  </div>
4748
4746
  <div class="clearer"></div>
4749
4747
  </div>
4750
- <div class="related" role="navigation" aria-label="related navigation">
4748
+ <div class="related">
4751
4749
  <h3>ナビゲーション</h3>
4752
4750
  <ul>
4753
4751
  <li class="right" style="margin-right: 10px">
4754
4752
  <a href="../../genindex.html" title="総合索引"
4755
4753
  >索引</a></li>
4756
4754
  <li class="right" >
4757
- <a href="shutdown.html" title="7.3.30. shutdown"
4755
+ <a href="shutdown.html" title="7.3.34. shutdown"
4758
4756
  >次へ</a> |</li>
4759
4757
  <li class="right" >
4760
- <a href="ruby_load.html" title="7.3.28. ruby_load"
4758
+ <a href="ruby_load.html" title="7.3.32. ruby_load"
4761
4759
  >前へ</a> |</li>
4762
- <li><a href="../../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
4760
+ <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
4763
4761
  <li><a href="../../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
4764
4762
  <li><a href="../command.html" >7.3. コマンド</a> &raquo;</li>
4765
4763
  </ul>
4766
4764
  </div>
4767
- <div class="footer" role="contentinfo">
4765
+ <div class="footer">
4768
4766
  &copy; Copyright 2009-2015, Brazil, Inc.
4769
4767
  </div>
4770
4768
  </body>