rroonga 3.0.2-x86-mingw32 → 3.0.4-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 (375) hide show
  1. data/doc/text/news.textile +30 -1
  2. data/ext/groonga/extconf.rb +49 -26
  3. data/ext/groonga/rb-grn-array.c +56 -1
  4. data/ext/groonga/rb-grn-column.c +1 -1
  5. data/ext/groonga/rb-grn-double-array-trie.c +1 -1
  6. data/ext/groonga/rb-grn-exception.c +3 -3
  7. data/ext/groonga/rb-grn-expression.c +14 -9
  8. data/ext/groonga/rb-grn-index-column.c +1 -1
  9. data/ext/groonga/rb-grn-operator.c +10 -3
  10. data/ext/groonga/rb-grn-patricia-trie.c +1 -1
  11. data/ext/groonga/rb-grn-table.c +71 -25
  12. data/ext/groonga/rb-grn-utils.c +3 -1
  13. data/ext/groonga/rb-grn-variable.c +17 -4
  14. data/ext/groonga/rb-grn.h +2 -1
  15. data/lib/1.9/groonga.so +0 -0
  16. data/lib/2.0/groonga.so +0 -0
  17. data/lib/groonga/record.rb +9 -2
  18. data/lib/groonga/sub-records.rb +62 -0
  19. data/rroonga-build.rb +2 -1
  20. data/rroonga.gemspec +1 -1
  21. data/test/test-array.rb +35 -0
  22. data/test/test-context.rb +2 -1
  23. data/test/test-database.rb +2 -1
  24. data/test/test-expression.rb +14 -4
  25. data/test/test-sub-records.rb +109 -0
  26. data/test/test-table.rb +104 -0
  27. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  28. data/vendor/local/bin/groonga.exe +0 -0
  29. data/vendor/local/bin/libgroonga-0.dll +0 -0
  30. data/vendor/local/bin/libmecab-1.dll +0 -0
  31. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  32. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  33. data/vendor/local/bin/mecab.exe +0 -0
  34. data/vendor/local/include/groonga/groonga.h +20 -2
  35. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  36. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  37. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  38. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  39. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  40. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  41. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  42. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  43. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  44. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  45. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  46. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  47. data/vendor/local/lib/libgroonga.a +0 -0
  48. data/vendor/local/lib/libgroonga.dll.a +0 -0
  49. data/vendor/local/lib/libmecab.a +0 -0
  50. data/vendor/local/lib/libmecab.dll.a +0 -0
  51. data/vendor/local/lib/libmsgpack.a +0 -0
  52. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  53. data/vendor/local/lib/libmsgpackc.a +0 -0
  54. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  55. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  56. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  57. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  58. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  59. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  60. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  61. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  62. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
  63. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  64. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  65. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  66. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  67. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  68. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  69. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  70. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  71. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +43 -0
  72. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -2
  73. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +75 -0
  74. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +14 -6
  75. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +28 -17
  76. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +5 -0
  77. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +19 -0
  78. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +5 -1
  79. data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
  80. data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
  81. data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
  82. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
  83. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
  84. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
  85. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
  86. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -6
  87. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
  88. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
  89. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
  90. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
  91. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
  92. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
  93. data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
  94. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
  95. data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
  96. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
  97. data/vendor/local/share/doc/groonga/en/html/index.html +11 -10
  98. data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
  99. data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
  100. data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
  101. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
  102. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
  103. data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
  104. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
  105. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
  106. data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
  107. data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
  108. data/vendor/local/share/doc/groonga/en/html/news.html +187 -137
  109. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
  110. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
  111. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
  112. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
  113. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  114. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  115. data/vendor/local/share/doc/groonga/en/html/reference.html +11 -10
  116. data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
  117. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
  118. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
  119. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
  120. data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
  121. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
  122. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
  123. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
  124. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
  125. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
  126. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
  127. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
  128. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
  129. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
  130. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
  131. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
  132. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
  133. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
  134. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
  135. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
  136. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
  137. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
  138. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
  139. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +16 -6
  140. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
  141. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
  142. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
  143. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
  144. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +10 -10
  145. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
  146. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
  147. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
  148. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
  149. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +514 -7
  150. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
  151. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
  152. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
  153. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
  154. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
  155. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
  156. data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -6
  157. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +8 -8
  158. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
  159. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  160. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
  161. data/vendor/local/share/doc/groonga/en/html/reference/function.html +11 -10
  162. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
  163. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
  164. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
  165. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +10 -10
  166. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +231 -0
  167. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +26 -26
  168. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -49
  169. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +27 -27
  170. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +27 -27
  171. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +53 -44
  172. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
  173. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
  174. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
  175. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +9 -9
  176. data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
  177. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
  178. data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
  179. data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
  180. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
  181. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
  182. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
  183. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
  184. data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
  185. data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
  186. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  187. data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
  188. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
  189. data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
  190. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
  191. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
  192. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
  193. data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
  194. data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
  195. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
  197. data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
  198. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
  199. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
  200. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
  201. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
  202. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  203. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
  204. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  205. data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
  206. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +10 -5
  207. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
  208. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
  209. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
  210. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  211. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
  212. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +29 -11
  213. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +17 -12
  214. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
  215. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
  216. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
  217. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  218. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
  219. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  220. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  221. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  222. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  223. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  224. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  225. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  226. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  227. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +43 -0
  228. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -2
  229. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +75 -0
  230. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +14 -6
  231. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +28 -17
  232. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +5 -0
  233. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +19 -0
  234. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +5 -1
  235. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
  236. data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
  237. data/vendor/local/share/doc/groonga/ja/html/contribution.html +11 -8
  238. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
  239. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
  240. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
  241. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
  242. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -6
  243. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
  244. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
  245. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
  246. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
  247. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +25 -15
  248. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +9 -7
  249. data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
  250. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +21 -13
  251. data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
  252. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +23 -14
  253. data/vendor/local/share/doc/groonga/ja/html/index.html +11 -10
  254. data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
  255. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -11
  256. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +14 -11
  257. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +14 -11
  258. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
  259. data/vendor/local/share/doc/groonga/ja/html/install/others.html +38 -23
  260. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
  261. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +14 -11
  262. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
  263. data/vendor/local/share/doc/groonga/ja/html/limitations.html +15 -10
  264. data/vendor/local/share/doc/groonga/ja/html/news.html +885 -481
  265. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
  266. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
  267. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
  268. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +280 -146
  269. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  270. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  271. data/vendor/local/share/doc/groonga/ja/html/reference.html +11 -10
  272. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
  273. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +17 -11
  274. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
  275. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
  276. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
  277. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
  278. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
  279. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +9 -7
  280. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
  281. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
  282. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
  283. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
  284. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
  285. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
  286. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +9 -7
  287. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
  288. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
  289. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
  290. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
  291. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +17 -11
  292. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
  293. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
  294. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
  295. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -8
  296. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
  297. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
  298. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +12 -9
  299. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
  300. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
  301. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +33 -19
  302. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +43 -24
  303. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
  304. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
  305. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +558 -75
  306. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +9 -7
  307. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
  308. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
  309. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
  310. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
  311. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
  312. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
  313. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +10 -9
  314. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
  315. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  316. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
  317. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +11 -10
  318. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
  319. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -8
  320. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
  321. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +10 -10
  322. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +231 -0
  323. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +26 -26
  324. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -50
  325. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +27 -27
  326. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -33
  327. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +53 -44
  328. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +15 -11
  329. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +23 -14
  330. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +13 -9
  331. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +9 -9
  332. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
  333. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
  334. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +11 -8
  335. data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
  336. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
  337. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +15 -10
  338. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +41 -23
  339. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
  340. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
  341. data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
  342. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  343. data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
  344. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
  345. data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
  346. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +83 -46
  347. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
  348. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
  349. data/vendor/local/share/doc/groonga/ja/html/server/package.html +41 -23
  350. data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
  351. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +71 -38
  352. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
  353. data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
  354. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +55 -30
  355. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +33 -19
  356. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +19 -12
  357. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +27 -16
  358. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  359. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
  360. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  361. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
  362. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -11
  363. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
  364. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
  365. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +24 -16
  366. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
  368. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +31 -11
  369. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +16 -12
  370. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
  371. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
  372. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
  373. data/vendor/local/share/man/ja/man1/groonga.1 +847 -160
  374. data/vendor/local/share/man/man1/groonga.1 +826 -97
  375. metadata +10 -2
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>8.3.29. tokenize &mdash; groonga v3.0.4ドキュメント</title>
10
+ <title>8.3.29. tokenize &mdash; groonga v3.0.5ドキュメント</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: '3.0.4',
18
+ VERSION: '3.0.5',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="groonga v3.0.4ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="groonga v3.0.5ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="8.3. コマンド" href="../command.html" />
31
31
  <link rel="next" title="8.3.30. truncate" href="truncate.html" />
32
32
  <link rel="prev" title="8.3.28. table_remove" href="table_remove.html" />
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="table_remove.html" title="8.3.28. table_remove"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">groonga v3.0.4ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">groonga v3.0.5ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../reference.html" >8. リファレンスマニュアル</a> &raquo;</li>
66
66
  <li><a href="../command.html" accesskey="U">8.3. コマンド</a> &raquo;</li>
67
67
  </ul>
@@ -76,14 +76,11 @@
76
76
  <h1>8.3.29. <tt class="docutils literal"><span class="pre">tokenize</span></tt><a class="headerlink" href="#tokenize" title="このヘッドラインへのパーマリンク">¶</a></h1>
77
77
  <div class="section" id="summary">
78
78
  <h2>8.3.29.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
79
- <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> command tokenizes text by the specified tokenizer.
80
- It is useful to debug tokenization.</p>
79
+ <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドは指定したトークナイザーでテキストをトークナイズします。これはトークナイズ処理のデバッグに便利です。</p>
81
80
  </div>
82
81
  <div class="section" id="syntax">
83
82
  <h2>8.3.29.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
84
- <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> command has required parameters and optional parameters.
85
- <tt class="docutils literal"><span class="pre">tokenizer</span></tt> and <tt class="docutils literal"><span class="pre">string</span></tt> are required parameters. Others are
86
- optional:</p>
83
+ <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドには必須の引数と省略可能な引数があります。 <tt class="docutils literal"><span class="pre">tokenizer</span></tt> <tt class="docutils literal"><span class="pre">string</span></tt> が必須の引数で、他の引数はすべて省略可能です。</p>
87
84
  <div class="highlight-none"><div class="highlight"><pre>tokenize tokenizer
88
85
  string
89
86
  [normalizer=null]
@@ -94,127 +91,613 @@ optional:</p>
94
91
  <div class="section" id="usage">
95
92
  <h2>8.3.29.3. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
96
93
  <p>以下は簡単な使用例です。</p>
97
- <p>It has only required parameters. <tt class="docutils literal"><span class="pre">tokenizer</span></tt> is <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> and
98
- <tt class="docutils literal"><span class="pre">string</span></tt> is <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt>. It returns tokens that is
99
- generated by tokenizing <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt> with <tt class="docutils literal"><span class="pre">TokenBigram</span></tt>
100
- tokenizer. It doesn't normalize <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt>.</p>
94
+ <p>実行例:</p>
95
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram &quot;Fulltext Search&quot;
96
+ # [
97
+ # [
98
+ # 0,
99
+ # 1337566253.89858,
100
+ # 0.000355720520019531
101
+ # ],
102
+ # [
103
+ # {
104
+ # &quot;position&quot;: 0,
105
+ # &quot;value&quot;: &quot;Fu&quot;
106
+ # },
107
+ # {
108
+ # &quot;position&quot;: 1,
109
+ # &quot;value&quot;: &quot;ul&quot;
110
+ # },
111
+ # {
112
+ # &quot;position&quot;: 2,
113
+ # &quot;value&quot;: &quot;ll&quot;
114
+ # },
115
+ # {
116
+ # &quot;position&quot;: 3,
117
+ # &quot;value&quot;: &quot;lt&quot;
118
+ # },
119
+ # {
120
+ # &quot;position&quot;: 4,
121
+ # &quot;value&quot;: &quot;te&quot;
122
+ # },
123
+ # {
124
+ # &quot;position&quot;: 5,
125
+ # &quot;value&quot;: &quot;ex&quot;
126
+ # },
127
+ # {
128
+ # &quot;position&quot;: 6,
129
+ # &quot;value&quot;: &quot;xt&quot;
130
+ # },
131
+ # {
132
+ # &quot;position&quot;: 7,
133
+ # &quot;value&quot;: &quot;t &quot;
134
+ # },
135
+ # {
136
+ # &quot;position&quot;: 8,
137
+ # &quot;value&quot;: &quot; S&quot;
138
+ # },
139
+ # {
140
+ # &quot;position&quot;: 9,
141
+ # &quot;value&quot;: &quot;Se&quot;
142
+ # },
143
+ # {
144
+ # &quot;position&quot;: 10,
145
+ # &quot;value&quot;: &quot;ea&quot;
146
+ # },
147
+ # {
148
+ # &quot;position&quot;: 11,
149
+ # &quot;value&quot;: &quot;ar&quot;
150
+ # },
151
+ # {
152
+ # &quot;position&quot;: 12,
153
+ # &quot;value&quot;: &quot;rc&quot;
154
+ # },
155
+ # {
156
+ # &quot;position&quot;: 13,
157
+ # &quot;value&quot;: &quot;ch&quot;
158
+ # },
159
+ # {
160
+ # &quot;position&quot;: 14,
161
+ # &quot;value&quot;: &quot;h&quot;
162
+ # }
163
+ # ]
164
+ # ]
165
+ </pre></div>
166
+ </div>
167
+ <p>この例では必須のパラメーターだけ使っています。 <tt class="docutils literal"><span class="pre">tokenizer</span></tt> には <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> を、 <tt class="docutils literal"><span class="pre">string</span></tt> には <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt> を指定しています。この例は <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> トークナイザーで <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt> をトークナイズしたトークンを返します。この例では <tt class="docutils literal"><span class="pre">&quot;Fulltext</span> <span class="pre">Search&quot;</span></tt> を正規化していません。</p>
101
168
  </div>
102
169
  <div class="section" id="parameters">
103
170
  <h2>8.3.29.4. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
104
171
  <p>このセクションではすべての引数について説明します。引数はカテゴリわけしています。</p>
105
172
  <div class="section" id="required-parameters">
106
- <h3>8.3.29.4.1. Required parameters<a class="headerlink" href="#required-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
173
+ <h3>8.3.29.4.1. 必須引数<a class="headerlink" href="#required-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
107
174
  <p>必須引数は二つあります。 <tt class="docutils literal"><span class="pre">tokenizer</span></tt> と <tt class="docutils literal"><span class="pre">string</span></tt> です。</p>
108
175
  <div class="section" id="tokenizer">
109
176
  <h4>8.3.29.4.1.1. <tt class="docutils literal"><span class="pre">tokenizer</span></tt><a class="headerlink" href="#tokenizer" title="このヘッドラインへのパーマリンク">¶</a></h4>
110
- <p>It specifies the tokenizer name. <tt class="docutils literal"><span class="pre">tokenize</span></tt> command uses the
111
- tokenizer that is named <tt class="docutils literal"><span class="pre">tokenizer</span></tt>.</p>
112
- <p>See <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> about built-in tokenizers.</p>
113
- <p>Here is an example to use <tt class="docutils literal"><span class="pre">TokenTrigram</span></tt> tokenizer.</p>
114
- <p>If you want to use other tokenizers, you need to register additional
115
- tokenizer plugin by <a class="reference internal" href="register.html"><em>register</em></a> command. For example, you can use
116
- MySQL compatible normalizer by registering <a class="reference external" href="https://github.com/groonga/groonga-normalizer-mysql">groonga-normalizer-mysql</a>.</p>
177
+ <p>トークナイザー名を指定します。 <tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドは <tt class="docutils literal"><span class="pre">tokenizer</span></tt> で指定された名前のトークナイザーを使います。</p>
178
+ <p>組み込みのトークナイザーについては <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> を参照してください。</p>
179
+ <p>以下は <tt class="docutils literal"><span class="pre">TokenTrigram</span></tt> トークナイザーを使う例です。</p>
180
+ <p>実行例:</p>
181
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenTrigram &quot;Fulltext Search&quot;
182
+ # [
183
+ # [
184
+ # 0,
185
+ # 1337566253.89858,
186
+ # 0.000355720520019531
187
+ # ],
188
+ # [
189
+ # {
190
+ # &quot;position&quot;: 0,
191
+ # &quot;value&quot;: &quot;Ful&quot;
192
+ # },
193
+ # {
194
+ # &quot;position&quot;: 1,
195
+ # &quot;value&quot;: &quot;ull&quot;
196
+ # },
197
+ # {
198
+ # &quot;position&quot;: 2,
199
+ # &quot;value&quot;: &quot;llt&quot;
200
+ # },
201
+ # {
202
+ # &quot;position&quot;: 3,
203
+ # &quot;value&quot;: &quot;lte&quot;
204
+ # },
205
+ # {
206
+ # &quot;position&quot;: 4,
207
+ # &quot;value&quot;: &quot;tex&quot;
208
+ # },
209
+ # {
210
+ # &quot;position&quot;: 5,
211
+ # &quot;value&quot;: &quot;ext&quot;
212
+ # },
213
+ # {
214
+ # &quot;position&quot;: 6,
215
+ # &quot;value&quot;: &quot;xt &quot;
216
+ # },
217
+ # {
218
+ # &quot;position&quot;: 7,
219
+ # &quot;value&quot;: &quot;t S&quot;
220
+ # },
221
+ # {
222
+ # &quot;position&quot;: 8,
223
+ # &quot;value&quot;: &quot; Se&quot;
224
+ # },
225
+ # {
226
+ # &quot;position&quot;: 9,
227
+ # &quot;value&quot;: &quot;Sea&quot;
228
+ # },
229
+ # {
230
+ # &quot;position&quot;: 10,
231
+ # &quot;value&quot;: &quot;ear&quot;
232
+ # },
233
+ # {
234
+ # &quot;position&quot;: 11,
235
+ # &quot;value&quot;: &quot;arc&quot;
236
+ # },
237
+ # {
238
+ # &quot;position&quot;: 12,
239
+ # &quot;value&quot;: &quot;rch&quot;
240
+ # },
241
+ # {
242
+ # &quot;position&quot;: 13,
243
+ # &quot;value&quot;: &quot;ch&quot;
244
+ # },
245
+ # {
246
+ # &quot;position&quot;: 14,
247
+ # &quot;value&quot;: &quot;h&quot;
248
+ # }
249
+ # ]
250
+ # ]
251
+ </pre></div>
252
+ </div>
253
+ <p>他のトークナイザーを使いたい場合は、 <a class="reference internal" href="register.html"><em>register</em></a> コマンドでトークナイザープラグインを登録する必要があります。例えば、 <a class="reference external" href="https://github.com/groonga/groonga-normalizer-mysql">groonga-normalizer-mysql</a> を登録することでMySQL互換の正規化方法を使うことができます。</p>
117
254
  </div>
118
255
  <div class="section" id="string">
119
256
  <h4>8.3.29.4.1.2. <tt class="docutils literal"><span class="pre">string</span></tt><a class="headerlink" href="#string" title="このヘッドラインへのパーマリンク">¶</a></h4>
120
- <p>It specifies any string which you want to tokenize. If you want to
121
- include spaces in <tt class="docutils literal"><span class="pre">string</span></tt>, you need to quote <tt class="docutils literal"><span class="pre">string</span></tt> by
122
- single quotation (<tt class="docutils literal"><span class="pre">'</span></tt>) or double quotation (<tt class="docutils literal"><span class="pre">&quot;</span></tt>).</p>
123
- <p>Here is an example to use spaces in <tt class="docutils literal"><span class="pre">string</span></tt>.</p>
257
+ <p>トークナイズしたい文字列を指定します。 <tt class="docutils literal"><span class="pre">string</span></tt> の中に文字列を含める場合は、シングルクォート( <tt class="docutils literal"><span class="pre">'</span></tt> )またはダブルクォート( <tt class="docutils literal"><span class="pre">&quot;</span></tt> )で <tt class="docutils literal"><span class="pre">string</span></tt> をクォートする必要があります。</p>
258
+ <p><tt class="docutils literal"><span class="pre">string</span></tt> の中で空白を使う例です。</p>
259
+ <p>実行例:</p>
260
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram &quot;Groonga is a fast fulltext earch engine!&quot;
261
+ # [
262
+ # [
263
+ # 0,
264
+ # 1337566253.89858,
265
+ # 0.000355720520019531
266
+ # ],
267
+ # [
268
+ # {
269
+ # &quot;position&quot;: 0,
270
+ # &quot;value&quot;: &quot;Gr&quot;
271
+ # },
272
+ # {
273
+ # &quot;position&quot;: 1,
274
+ # &quot;value&quot;: &quot;ro&quot;
275
+ # },
276
+ # {
277
+ # &quot;position&quot;: 2,
278
+ # &quot;value&quot;: &quot;oo&quot;
279
+ # },
280
+ # {
281
+ # &quot;position&quot;: 3,
282
+ # &quot;value&quot;: &quot;on&quot;
283
+ # },
284
+ # {
285
+ # &quot;position&quot;: 4,
286
+ # &quot;value&quot;: &quot;ng&quot;
287
+ # },
288
+ # {
289
+ # &quot;position&quot;: 5,
290
+ # &quot;value&quot;: &quot;ga&quot;
291
+ # },
292
+ # {
293
+ # &quot;position&quot;: 6,
294
+ # &quot;value&quot;: &quot;a &quot;
295
+ # },
296
+ # {
297
+ # &quot;position&quot;: 7,
298
+ # &quot;value&quot;: &quot; i&quot;
299
+ # },
300
+ # {
301
+ # &quot;position&quot;: 8,
302
+ # &quot;value&quot;: &quot;is&quot;
303
+ # },
304
+ # {
305
+ # &quot;position&quot;: 9,
306
+ # &quot;value&quot;: &quot;s &quot;
307
+ # },
308
+ # {
309
+ # &quot;position&quot;: 10,
310
+ # &quot;value&quot;: &quot; a&quot;
311
+ # },
312
+ # {
313
+ # &quot;position&quot;: 11,
314
+ # &quot;value&quot;: &quot;a &quot;
315
+ # },
316
+ # {
317
+ # &quot;position&quot;: 12,
318
+ # &quot;value&quot;: &quot; f&quot;
319
+ # },
320
+ # {
321
+ # &quot;position&quot;: 13,
322
+ # &quot;value&quot;: &quot;fa&quot;
323
+ # },
324
+ # {
325
+ # &quot;position&quot;: 14,
326
+ # &quot;value&quot;: &quot;as&quot;
327
+ # },
328
+ # {
329
+ # &quot;position&quot;: 15,
330
+ # &quot;value&quot;: &quot;st&quot;
331
+ # },
332
+ # {
333
+ # &quot;position&quot;: 16,
334
+ # &quot;value&quot;: &quot;t &quot;
335
+ # },
336
+ # {
337
+ # &quot;position&quot;: 17,
338
+ # &quot;value&quot;: &quot; f&quot;
339
+ # },
340
+ # {
341
+ # &quot;position&quot;: 18,
342
+ # &quot;value&quot;: &quot;fu&quot;
343
+ # },
344
+ # {
345
+ # &quot;position&quot;: 19,
346
+ # &quot;value&quot;: &quot;ul&quot;
347
+ # },
348
+ # {
349
+ # &quot;position&quot;: 20,
350
+ # &quot;value&quot;: &quot;ll&quot;
351
+ # },
352
+ # {
353
+ # &quot;position&quot;: 21,
354
+ # &quot;value&quot;: &quot;lt&quot;
355
+ # },
356
+ # {
357
+ # &quot;position&quot;: 22,
358
+ # &quot;value&quot;: &quot;te&quot;
359
+ # },
360
+ # {
361
+ # &quot;position&quot;: 23,
362
+ # &quot;value&quot;: &quot;ex&quot;
363
+ # },
364
+ # {
365
+ # &quot;position&quot;: 24,
366
+ # &quot;value&quot;: &quot;xt&quot;
367
+ # },
368
+ # {
369
+ # &quot;position&quot;: 25,
370
+ # &quot;value&quot;: &quot;t &quot;
371
+ # },
372
+ # {
373
+ # &quot;position&quot;: 26,
374
+ # &quot;value&quot;: &quot; e&quot;
375
+ # },
376
+ # {
377
+ # &quot;position&quot;: 27,
378
+ # &quot;value&quot;: &quot;ea&quot;
379
+ # },
380
+ # {
381
+ # &quot;position&quot;: 28,
382
+ # &quot;value&quot;: &quot;ar&quot;
383
+ # },
384
+ # {
385
+ # &quot;position&quot;: 29,
386
+ # &quot;value&quot;: &quot;rc&quot;
387
+ # },
388
+ # {
389
+ # &quot;position&quot;: 30,
390
+ # &quot;value&quot;: &quot;ch&quot;
391
+ # },
392
+ # {
393
+ # &quot;position&quot;: 31,
394
+ # &quot;value&quot;: &quot;h &quot;
395
+ # },
396
+ # {
397
+ # &quot;position&quot;: 32,
398
+ # &quot;value&quot;: &quot; e&quot;
399
+ # },
400
+ # {
401
+ # &quot;position&quot;: 33,
402
+ # &quot;value&quot;: &quot;en&quot;
403
+ # },
404
+ # {
405
+ # &quot;position&quot;: 34,
406
+ # &quot;value&quot;: &quot;ng&quot;
407
+ # },
408
+ # {
409
+ # &quot;position&quot;: 35,
410
+ # &quot;value&quot;: &quot;gi&quot;
411
+ # },
412
+ # {
413
+ # &quot;position&quot;: 36,
414
+ # &quot;value&quot;: &quot;in&quot;
415
+ # },
416
+ # {
417
+ # &quot;position&quot;: 37,
418
+ # &quot;value&quot;: &quot;ne&quot;
419
+ # },
420
+ # {
421
+ # &quot;position&quot;: 38,
422
+ # &quot;value&quot;: &quot;e!&quot;
423
+ # },
424
+ # {
425
+ # &quot;position&quot;: 39,
426
+ # &quot;value&quot;: &quot;!&quot;
427
+ # }
428
+ # ]
429
+ # ]
430
+ </pre></div>
431
+ </div>
124
432
  </div>
125
433
  </div>
126
434
  <div class="section" id="optional-parameters">
127
- <h3>8.3.29.4.2. Optional parameters<a class="headerlink" href="#optional-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
128
- <p>There are optional parameters.</p>
435
+ <h3>8.3.29.4.2. 省略可能引数<a class="headerlink" href="#optional-parameters" title="このヘッドラインへのパーマリンク">¶</a></h3>
436
+ <p>いくつか省略可能な引数があります。</p>
129
437
  <div class="section" id="normalizer">
130
438
  <h4>8.3.29.4.2.1. <tt class="docutils literal"><span class="pre">normalizer</span></tt><a class="headerlink" href="#normalizer" title="このヘッドラインへのパーマリンク">¶</a></h4>
131
- <p>It specifies the normalizer name. <tt class="docutils literal"><span class="pre">tokenize</span></tt> command uses the
132
- normalizer that is named <tt class="docutils literal"><span class="pre">normalizer</span></tt>. Normalizer is important for
133
- N-gram family tokenizers such as <tt class="docutils literal"><span class="pre">TokenBigram</span></tt>.</p>
134
- <p>Normalizer detects character type for each character while
135
- normalizing. N-gram family tokenizers use character types while
136
- tokenizing.</p>
137
- <p>Here is an example that doesn't use normalizer.</p>
138
- <p>All alphabets are tokenized by two characters. For example, <tt class="docutils literal"><span class="pre">Fu</span></tt> is
139
- a token.</p>
140
- <p>Here is an example that uses normalizer.</p>
141
- <p>Continuous alphabets are tokenized as one token. For example,
142
- <tt class="docutils literal"><span class="pre">fulltext</span></tt> is a token.</p>
143
- <p>If you want to tokenize by two characters with noramlizer, use
144
- <tt class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></tt>.</p>
145
- <p>All alphabets are tokenized by two characters. And they are normalized
146
- to lower case characters. For example, <tt class="docutils literal"><span class="pre">fu</span></tt> is a token.</p>
439
+ <p>ノーマライザー名を指定します。 <tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドは <tt class="docutils literal"><span class="pre">normalizer</span></tt> という名前のノーまライザーを使います。ノーまライザーは <tt class="docutils literal"><span class="pre">TokenBigrma</span></tt> など、N-gram関連のトークナイザーにとってとても重要です。</p>
440
+ <p>ノーマライザーはノーマライズ中にそれぞれの文字の種類を検出します。N-gram系のトークナイザーはトークナイズ中に文字の種類を利用します。</p>
441
+ <p>以下はノーマライザーを使わない例です。</p>
442
+ <p>実行例:</p>
443
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram &quot;Fulltext Search&quot;
444
+ # [
445
+ # [
446
+ # 0,
447
+ # 1337566253.89858,
448
+ # 0.000355720520019531
449
+ # ],
450
+ # [
451
+ # {
452
+ # &quot;position&quot;: 0,
453
+ # &quot;value&quot;: &quot;Fu&quot;
454
+ # },
455
+ # {
456
+ # &quot;position&quot;: 1,
457
+ # &quot;value&quot;: &quot;ul&quot;
458
+ # },
459
+ # {
460
+ # &quot;position&quot;: 2,
461
+ # &quot;value&quot;: &quot;ll&quot;
462
+ # },
463
+ # {
464
+ # &quot;position&quot;: 3,
465
+ # &quot;value&quot;: &quot;lt&quot;
466
+ # },
467
+ # {
468
+ # &quot;position&quot;: 4,
469
+ # &quot;value&quot;: &quot;te&quot;
470
+ # },
471
+ # {
472
+ # &quot;position&quot;: 5,
473
+ # &quot;value&quot;: &quot;ex&quot;
474
+ # },
475
+ # {
476
+ # &quot;position&quot;: 6,
477
+ # &quot;value&quot;: &quot;xt&quot;
478
+ # },
479
+ # {
480
+ # &quot;position&quot;: 7,
481
+ # &quot;value&quot;: &quot;t &quot;
482
+ # },
483
+ # {
484
+ # &quot;position&quot;: 8,
485
+ # &quot;value&quot;: &quot; S&quot;
486
+ # },
487
+ # {
488
+ # &quot;position&quot;: 9,
489
+ # &quot;value&quot;: &quot;Se&quot;
490
+ # },
491
+ # {
492
+ # &quot;position&quot;: 10,
493
+ # &quot;value&quot;: &quot;ea&quot;
494
+ # },
495
+ # {
496
+ # &quot;position&quot;: 11,
497
+ # &quot;value&quot;: &quot;ar&quot;
498
+ # },
499
+ # {
500
+ # &quot;position&quot;: 12,
501
+ # &quot;value&quot;: &quot;rc&quot;
502
+ # },
503
+ # {
504
+ # &quot;position&quot;: 13,
505
+ # &quot;value&quot;: &quot;ch&quot;
506
+ # },
507
+ # {
508
+ # &quot;position&quot;: 14,
509
+ # &quot;value&quot;: &quot;h&quot;
510
+ # }
511
+ # ]
512
+ # ]
513
+ </pre></div>
514
+ </div>
515
+ <p>すべてのアルファベットが2文字ごとトークナイズされています。例えば、 <tt class="docutils literal"><span class="pre">Fu</span></tt> で1つのトークンになっています。</p>
516
+ <p>以下はノーマライザーを使う例です。</p>
517
+ <p>実行例:</p>
518
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram &quot;Fulltext Search&quot; NormalizerAuto
519
+ # [
520
+ # [
521
+ # 0,
522
+ # 1337566253.89858,
523
+ # 0.000355720520019531
524
+ # ],
525
+ # [
526
+ # {
527
+ # &quot;position&quot;: 0,
528
+ # &quot;value&quot;: &quot;fulltext&quot;
529
+ # },
530
+ # {
531
+ # &quot;position&quot;: 1,
532
+ # &quot;value&quot;: &quot;search&quot;
533
+ # }
534
+ # ]
535
+ # ]
536
+ </pre></div>
537
+ </div>
538
+ <p>連続するアルファベットが1つのトークンにトークナイズされています。例えば、 <tt class="docutils literal"><span class="pre">fulltext</span></tt> で1つのトークンになっています。</p>
539
+ <p>ノーマライザーを使いながら2文字でトークナイズしたい場合は <tt class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></tt> を使って下さい。</p>
540
+ <p>実行例:</p>
541
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigramSplitSymbolAlpha &quot;Fulltext Search&quot; NormalizerAuto
542
+ # [
543
+ # [
544
+ # 0,
545
+ # 1337566253.89858,
546
+ # 0.000355720520019531
547
+ # ],
548
+ # [
549
+ # {
550
+ # &quot;position&quot;: 0,
551
+ # &quot;value&quot;: &quot;fu&quot;
552
+ # },
553
+ # {
554
+ # &quot;position&quot;: 1,
555
+ # &quot;value&quot;: &quot;ul&quot;
556
+ # },
557
+ # {
558
+ # &quot;position&quot;: 2,
559
+ # &quot;value&quot;: &quot;ll&quot;
560
+ # },
561
+ # {
562
+ # &quot;position&quot;: 3,
563
+ # &quot;value&quot;: &quot;lt&quot;
564
+ # },
565
+ # {
566
+ # &quot;position&quot;: 4,
567
+ # &quot;value&quot;: &quot;te&quot;
568
+ # },
569
+ # {
570
+ # &quot;position&quot;: 5,
571
+ # &quot;value&quot;: &quot;ex&quot;
572
+ # },
573
+ # {
574
+ # &quot;position&quot;: 6,
575
+ # &quot;value&quot;: &quot;xt&quot;
576
+ # },
577
+ # {
578
+ # &quot;position&quot;: 7,
579
+ # &quot;value&quot;: &quot;t&quot;
580
+ # },
581
+ # {
582
+ # &quot;position&quot;: 8,
583
+ # &quot;value&quot;: &quot;se&quot;
584
+ # },
585
+ # {
586
+ # &quot;position&quot;: 9,
587
+ # &quot;value&quot;: &quot;ea&quot;
588
+ # },
589
+ # {
590
+ # &quot;position&quot;: 10,
591
+ # &quot;value&quot;: &quot;ar&quot;
592
+ # },
593
+ # {
594
+ # &quot;position&quot;: 11,
595
+ # &quot;value&quot;: &quot;rc&quot;
596
+ # },
597
+ # {
598
+ # &quot;position&quot;: 12,
599
+ # &quot;value&quot;: &quot;ch&quot;
600
+ # },
601
+ # {
602
+ # &quot;position&quot;: 13,
603
+ # &quot;value&quot;: &quot;h&quot;
604
+ # }
605
+ # ]
606
+ # ]
607
+ </pre></div>
608
+ </div>
609
+ <p>すべてのアルファベットが2文字ごとにトークナイズされています。そして、すべての文字が小文字にノーマライズされています。例えば、 <tt class="docutils literal"><span class="pre">fu</span></tt> で1つのトークンになっています。</p>
147
610
  </div>
148
611
  <div class="section" id="flags">
149
612
  <h4>8.3.29.4.2.2. <tt class="docutils literal"><span class="pre">flags</span></tt><a class="headerlink" href="#flags" title="このヘッドラインへのパーマリンク">¶</a></h4>
150
- <p>It specifies a tokenization customize options. You can specify
151
- multiple options separated by &quot;<tt class="docutils literal"><span class="pre">|</span></tt>&quot;. For example,
152
- <tt class="docutils literal"><span class="pre">NONE|ENABLE_TOKENIZED_DELIMITER</span></tt>.</p>
153
- <p>Here are available flags.</p>
613
+ <p>トークナイズ処理をカスタマイズするオプションを指定します。「 <tt class="docutils literal"><span class="pre">|</span></tt> 」で区切って複数のオプションを指定することができます。例えば、 <tt class="docutils literal"><span class="pre">NONE|ENABLE_TOKENIZED_DELIMITER</span></tt> というように指定できます。</p>
614
+ <p>指定可能なフラグは以下の通りです。</p>
154
615
  <table border="1" class="docutils">
155
616
  <colgroup>
156
617
  <col width="50%" />
157
618
  <col width="50%" />
158
619
  </colgroup>
159
620
  <thead valign="bottom">
160
- <tr class="row-odd"><th class="head">Flag</th>
161
- <th class="head">Description</th>
621
+ <tr class="row-odd"><th class="head"><p class="first last">フラグ</p>
622
+ </th>
623
+ <th class="head"><p class="first last">説明</p>
624
+ </th>
162
625
  </tr>
163
626
  </thead>
164
627
  <tbody valign="top">
165
628
  <tr class="row-even"><td><tt class="docutils literal"><span class="pre">NONE</span></tt></td>
166
- <td>Just ignored.</td>
629
+ <td><p class="first last">無視されます。</p>
630
+ </td>
167
631
  </tr>
168
632
  <tr class="row-odd"><td><tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt></td>
169
- <td>Enables tokenized delimiter. See <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> about
170
- tokenized delimiter details.</td>
633
+ <td><p class="first last">トークナイズ済み区切り文字を有効にします。トークナイズ済み区切り文字の詳細は <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> を参照してください。</p>
634
+ </td>
171
635
  </tr>
172
636
  </tbody>
173
637
  </table>
174
- <p>Here is an example that uses <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt>.</p>
175
- <p><tt class="docutils literal"><span class="pre">TokenDelimit</span></tt> tokenizer is one of tokenized delimiter supported
176
- tokenizer. <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> enables tokenized delimiter.
177
- Tokenized delimiter is special character that indicates token
178
- border. It is <cite>U+FFFE</cite>. The character is not assigned any
179
- character. It means that the character is not appeared in normal
180
- string. So the character is good character for this puropose. If
181
- <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> is enabled, the target string is
182
- treated as already tokenized string. Tokenizer just tokenizes by
183
- tokenized delimiter.</p>
638
+ <p>以下は <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> を使った例です。</p>
639
+ <p>実行例:</p>
640
+ <div class="highlight-none"><div class="highlight"><pre>tokenize TokenDelimit &quot;Full￾text Sea￾crch&quot; NormalizerAuto ENABLE_TOKENIZED_DELIMITER
641
+ # [
642
+ # [
643
+ # 0,
644
+ # 1337566253.89858,
645
+ # 0.000355720520019531
646
+ # ],
647
+ # [
648
+ # {
649
+ # &quot;position&quot;: 0,
650
+ # &quot;value&quot;: &quot;full&quot;
651
+ # },
652
+ # {
653
+ # &quot;position&quot;: 1,
654
+ # &quot;value&quot;: &quot;text sea&quot;
655
+ # },
656
+ # {
657
+ # &quot;position&quot;: 2,
658
+ # &quot;value&quot;: &quot;crch&quot;
659
+ # }
660
+ # ]
661
+ # ]
662
+ </pre></div>
663
+ </div>
664
+ <p><tt class="docutils literal"><span class="pre">TokenDelimit</span></tt> トークナイザーはトークナイズ済み区切り文字をサポートしているトークナイザーの1つです。 <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> でトークナイズ済み区切り文字を有効に出来ます。トークナイズ済み区切り文字はトークンの区切りを表す特別な文字です。この文字は <tt class="docutils literal"><span class="pre">U+FFFE</span></tt> です。この文字コードはどの文字にも割り当てられていません。つまり、通常の文字列にはこの文字は現れません。よって、トークンの区切りを表すという目的には適切な文字です。 <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> が有効のときは、対象文字列はすでにトークナイズ済みであると扱われます。トークナイザーは単にトークナイズ済み区切り文字で区切ってトークナイズします。</p>
184
665
  </div>
185
666
  </div>
186
667
  </div>
187
668
  <div class="section" id="return-value">
188
669
  <h2>8.3.29.5. 戻り値<a class="headerlink" href="#return-value" title="このヘッドラインへのパーマリンク">¶</a></h2>
189
- <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> command returns tokenized tokens. Each token has some
190
- attributes except token itself. The attributes will be increased in
191
- the feature:</p>
670
+ <p><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドはトークナイズしたトークンをすべて返します。各トークンはトークン自身の文字列情報以外にいくつかの属性を持ちます。属性は今後増えていく可能性があります:</p>
192
671
  <div class="highlight-none"><div class="highlight"><pre>[HEADER, tokens]
193
672
  </pre></div>
194
673
  </div>
195
674
  <p><tt class="docutils literal"><span class="pre">HEADER</span></tt></p>
196
675
  <blockquote>
197
- <div>See <a class="reference internal" href="../command/output_format.html"><em>出力形式</em></a> about <tt class="docutils literal"><span class="pre">HEADER</span></tt>.</div></blockquote>
676
+ <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>
677
+ </div></blockquote>
198
678
  <p><tt class="docutils literal"><span class="pre">tokens</span></tt></p>
199
679
  <blockquote>
200
- <div><p>Tokens is an array of token. Token is an object that has the following
201
- attributes.</p>
680
+ <div><p><tt class="docutils literal"><span class="pre">tokens</span></tt> はトークンの配列です。トークンは以下の属性を持ったオブジェクトです。</p>
202
681
  <table border="1" class="docutils">
203
682
  <colgroup>
204
683
  <col width="50%" />
205
684
  <col width="50%" />
206
685
  </colgroup>
207
686
  <thead valign="bottom">
208
- <tr class="row-odd"><th class="head">Name</th>
209
- <th class="head">Description</th>
687
+ <tr class="row-odd"><th class="head"><p class="first last">名前</p>
688
+ </th>
689
+ <th class="head"><p class="first last">説明</p>
690
+ </th>
210
691
  </tr>
211
692
  </thead>
212
693
  <tbody valign="top">
213
694
  <tr class="row-even"><td><tt class="docutils literal"><span class="pre">value</span></tt></td>
214
- <td>Token itself.</td>
695
+ <td><p class="first last">トークン自身</p>
696
+ </td>
215
697
  </tr>
216
698
  <tr class="row-odd"><td><tt class="docutils literal"><span class="pre">position</span></tt></td>
217
- <td>The N-th token.</td>
699
+ <td><p class="first last">N番目のトークン。</p>
700
+ </td>
218
701
  </tr>
219
702
  </tbody>
220
703
  </table>
@@ -241,12 +724,12 @@ attributes.</p>
241
724
  <li><a class="reference internal" href="#syntax">8.3.29.2. 構文</a></li>
242
725
  <li><a class="reference internal" href="#usage">8.3.29.3. 使い方</a></li>
243
726
  <li><a class="reference internal" href="#parameters">8.3.29.4. 引数</a><ul>
244
- <li><a class="reference internal" href="#required-parameters">8.3.29.4.1. Required parameters</a><ul>
727
+ <li><a class="reference internal" href="#required-parameters">8.3.29.4.1. 必須引数</a><ul>
245
728
  <li><a class="reference internal" href="#tokenizer">8.3.29.4.1.1. <tt class="docutils literal"><span class="pre">tokenizer</span></tt></a></li>
246
729
  <li><a class="reference internal" href="#string">8.3.29.4.1.2. <tt class="docutils literal"><span class="pre">string</span></tt></a></li>
247
730
  </ul>
248
731
  </li>
249
- <li><a class="reference internal" href="#optional-parameters">8.3.29.4.2. Optional parameters</a><ul>
732
+ <li><a class="reference internal" href="#optional-parameters">8.3.29.4.2. 省略可能引数</a><ul>
250
733
  <li><a class="reference internal" href="#normalizer">8.3.29.4.2.1. <tt class="docutils literal"><span class="pre">normalizer</span></tt></a></li>
251
734
  <li><a class="reference internal" href="#flags">8.3.29.4.2.2. <tt class="docutils literal"><span class="pre">flags</span></tt></a></li>
252
735
  </ul>
@@ -299,7 +782,7 @@ attributes.</p>
299
782
  <li class="right" >
300
783
  <a href="table_remove.html" title="8.3.28. table_remove"
301
784
  >前へ</a> |</li>
302
- <li><a href="../../index.html">groonga v3.0.4ドキュメント</a> &raquo;</li>
785
+ <li><a href="../../index.html">groonga v3.0.5ドキュメント</a> &raquo;</li>
303
786
  <li><a href="../../reference.html" >8. リファレンスマニュアル</a> &raquo;</li>
304
787
  <li><a href="../command.html" >8.3. コマンド</a> &raquo;</li>
305
788
  </ul>