rroonga 2.0.8-x86-mingw32 → 2.1.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (389) hide show
  1. data/README.textile +2 -2
  2. data/bin/groonga-index-dump +47 -0
  3. data/doc/text/news.textile +733 -0
  4. data/doc/text/tutorial.textile +535 -0
  5. data/example/bookmark.rb +1 -1
  6. data/ext/groonga/rb-grn-database.c +21 -24
  7. data/ext/groonga/rb-grn-double-array-trie.c +50 -58
  8. data/ext/groonga/rb-grn-exception.c +18 -1
  9. data/ext/groonga/rb-grn-hash.c +18 -3
  10. data/ext/groonga/rb-grn-index-column.c +50 -2
  11. data/ext/groonga/rb-grn-normalizer.c +83 -0
  12. data/ext/groonga/rb-grn-object.c +18 -14
  13. data/ext/groonga/rb-grn-patricia-trie.c +17 -2
  14. data/ext/groonga/rb-grn-query-logger.c +263 -0
  15. data/ext/groonga/rb-grn-snippet.c +6 -0
  16. data/ext/groonga/rb-grn-table-key-support.c +204 -13
  17. data/ext/groonga/rb-grn-table.c +124 -46
  18. data/ext/groonga/rb-grn.h +14 -3
  19. data/ext/groonga/rb-groonga.c +2 -0
  20. data/lib/1.8/groonga.so +0 -0
  21. data/lib/1.9/groonga.so +0 -0
  22. data/lib/groonga.rb +2 -1
  23. data/lib/groonga/database.rb +7 -0
  24. data/lib/groonga/dumper.rb +21 -2
  25. data/lib/groonga/index-column.rb +170 -0
  26. data/lib/groonga/query-logger.rb +129 -0
  27. data/lib/groonga/record.rb +32 -8
  28. data/lib/groonga/schema.rb +231 -288
  29. data/rroonga-build.rb +2 -2
  30. data/rroonga.gemspec +11 -7
  31. data/test/groonga-test-utils.rb +18 -6
  32. data/test/test-hash.rb +49 -20
  33. data/test/test-index-cursor.rb +4 -4
  34. data/{Gemfile → test/test-normalizer.rb} +9 -5
  35. data/test/test-pagination.rb +1 -1
  36. data/test/test-patricia-trie.rb +8 -0
  37. data/test/test-schema.rb +16 -13
  38. data/test/test-snippet.rb +5 -0
  39. data/test/test-table.rb +24 -12
  40. data/test/test-view.rb +0 -1
  41. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  42. data/vendor/local/bin/groonga.exe +0 -0
  43. data/vendor/local/bin/libgroonga-0.dll +0 -0
  44. data/vendor/local/bin/libmecab-1.dll +0 -0
  45. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  46. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  47. data/vendor/local/bin/mecab-config +2 -2
  48. data/vendor/local/bin/mecab.exe +0 -0
  49. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  50. data/vendor/local/include/groonga/groonga.h +25 -14
  51. data/vendor/local/include/groonga/groonga/normalizer.h +55 -0
  52. data/vendor/local/include/groonga/groonga/tokenizer.h +33 -13
  53. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  54. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  55. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  56. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  57. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  58. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  59. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  60. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  61. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  62. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  63. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  64. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  65. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  66. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  67. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  68. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  69. data/vendor/local/lib/libgroonga.a +0 -0
  70. data/vendor/local/lib/libgroonga.dll.a +0 -0
  71. data/vendor/local/lib/libgroonga.la +2 -2
  72. data/vendor/local/lib/libmecab.a +0 -0
  73. data/vendor/local/lib/libmecab.dll.a +0 -0
  74. data/vendor/local/lib/libmecab.la +1 -1
  75. data/vendor/local/lib/libmsgpack.a +0 -0
  76. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  77. data/vendor/local/lib/libmsgpack.la +1 -1
  78. data/vendor/local/lib/libmsgpackc.a +0 -0
  79. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  80. data/vendor/local/lib/libmsgpackc.la +1 -1
  81. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  82. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  83. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  84. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  85. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  86. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  87. data/vendor/local/sbin/groonga-httpd-restart +9 -3
  88. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  89. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
  90. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  91. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  92. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  93. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  94. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  95. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -42
  96. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +16 -16
  97. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +59 -0
  98. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +129 -0
  99. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +0 -12
  100. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +3 -3
  101. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  102. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  103. data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
  104. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
  105. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
  106. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
  107. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
  108. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
  109. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
  110. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
  111. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
  112. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
  113. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
  114. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  115. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
  116. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  117. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +6 -6
  118. data/vendor/local/share/doc/groonga/en/html/index.html +12 -12
  119. data/vendor/local/share/doc/groonga/en/html/install.html +10 -11
  120. data/vendor/local/share/doc/groonga/en/html/install/centos.html +11 -11
  121. data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
  122. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +9 -9
  123. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
  124. data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
  125. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
  126. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +16 -53
  127. data/vendor/local/share/doc/groonga/en/html/install/windows.html +16 -16
  128. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  129. data/vendor/local/share/doc/groonga/en/html/news.html +146 -82
  130. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
  131. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
  132. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
  133. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
  134. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  135. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  136. data/vendor/local/share/doc/groonga/en/html/reference.html +6 -6
  137. data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
  138. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
  139. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
  140. data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
  141. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
  142. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
  143. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
  144. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
  145. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
  146. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
  147. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
  148. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
  149. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
  150. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
  151. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
  152. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
  153. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
  154. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
  155. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
  156. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
  157. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
  158. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
  159. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
  160. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +5 -5
  161. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
  162. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +5 -5
  163. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
  164. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
  165. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
  166. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
  167. data/vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html +5 -5
  168. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
  169. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
  170. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
  171. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
  172. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
  173. data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +5 -5
  174. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
  175. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
  176. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  177. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
  178. data/vendor/local/share/doc/groonga/en/html/reference/function.html +5 -5
  179. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
  180. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
  181. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
  182. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +5 -5
  183. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +5 -5
  184. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +5 -5
  185. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +5 -5
  186. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
  187. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
  188. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
  189. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +5 -5
  190. data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
  191. data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
  192. data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
  193. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
  194. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
  195. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/reference/type.html +5 -5
  197. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  198. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  199. data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
  200. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
  201. data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
  202. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
  203. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
  204. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
  205. data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
  206. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
  207. data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
  208. data/vendor/local/share/doc/groonga/en/html/suggest.html +6 -6
  209. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
  210. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
  211. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
  212. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
  213. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  214. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  215. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  216. data/vendor/local/share/doc/groonga/en/html/tutorial.html +8 -7
  217. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
  218. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
  219. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
  220. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
  221. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  222. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +265 -7
  223. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
  224. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
  225. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
  226. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
  227. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
  228. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  229. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
  230. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  231. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  232. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  233. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  234. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  235. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -42
  236. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +16 -16
  237. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +59 -0
  238. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +129 -0
  239. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +0 -12
  240. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  241. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  242. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  243. data/vendor/local/share/doc/groonga/ja/html/contribution.html +9 -9
  244. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
  245. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
  246. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
  247. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
  248. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
  249. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
  250. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  251. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  252. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
  253. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
  254. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  255. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
  256. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  257. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +6 -6
  258. data/vendor/local/share/doc/groonga/ja/html/index.html +12 -12
  259. data/vendor/local/share/doc/groonga/ja/html/install.html +10 -11
  260. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +11 -11
  261. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +8 -8
  262. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
  263. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
  264. data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
  265. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
  266. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +16 -51
  267. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +16 -16
  268. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  269. data/vendor/local/share/doc/groonga/ja/html/news.html +126 -82
  270. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
  271. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
  272. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
  273. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
  274. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  275. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  276. data/vendor/local/share/doc/groonga/ja/html/reference.html +6 -6
  277. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
  278. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
  279. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
  280. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
  281. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
  282. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
  283. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
  284. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
  285. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
  286. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
  287. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
  288. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
  289. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
  290. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
  291. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
  292. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
  293. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
  294. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
  295. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
  296. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
  297. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
  298. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
  299. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
  300. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +5 -5
  301. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
  302. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +5 -5
  303. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
  304. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +5 -5
  305. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
  306. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
  307. data/vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html +5 -5
  308. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
  309. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
  310. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
  311. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
  312. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
  313. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
  314. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +5 -5
  315. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
  316. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  317. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
  318. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +5 -5
  319. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
  320. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +5 -5
  321. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
  322. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +5 -5
  323. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +5 -5
  324. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +5 -5
  325. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +5 -5
  326. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +5 -5
  327. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +5 -5
  328. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +5 -5
  329. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +5 -5
  330. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
  331. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
  332. data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
  333. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
  334. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +5 -5
  335. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
  336. data/vendor/local/share/doc/groonga/ja/html/reference/type.html +5 -5
  337. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  338. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  339. data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
  340. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
  341. data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
  342. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
  343. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
  344. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
  345. data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
  346. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
  347. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
  348. data/vendor/local/share/doc/groonga/ja/html/suggest.html +6 -6
  349. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
  350. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
  351. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
  352. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
  353. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  354. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  355. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  356. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +8 -7
  357. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
  358. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
  359. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
  360. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
  361. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  362. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +259 -7
  363. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
  364. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
  365. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
  366. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
  368. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log +23 -0
  369. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data.log +16 -0
  370. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log +30 -0
  371. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema.log +20 -0
  372. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log +86 -0
  373. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select.log +41 -0
  374. data/vendor/local/share/doc/groonga/source/install/centos.txt +6 -6
  375. data/vendor/local/share/doc/groonga/source/install/debian.txt +3 -3
  376. data/vendor/local/share/doc/groonga/source/install/fedora.txt +4 -4
  377. data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +3 -3
  378. data/vendor/local/share/doc/groonga/source/install/others.txt +3 -3
  379. data/vendor/local/share/doc/groonga/source/install/solaris.txt +3 -3
  380. data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +3 -42
  381. data/vendor/local/share/doc/groonga/source/install/windows.txt +16 -16
  382. data/vendor/local/share/doc/groonga/source/news.txt +59 -0
  383. data/vendor/local/share/doc/groonga/source/tutorial/match_columns.txt +129 -0
  384. data/vendor/local/share/man/ja/man1/groonga.1 +338 -93
  385. data/vendor/local/share/man/man1/groonga.1 +341 -92
  386. metadata +1258 -1242
  387. data/AUTHORS +0 -5
  388. data/Rakefile +0 -203
  389. data/bin/groonga-query-log-extract +0 -117
data/README.textile CHANGED
@@ -48,8 +48,8 @@ h2. Install
48
48
 
49
49
  h2. Documents
50
50
 
51
- * "Reference manual in English":http://groonga.rubyforge.org/rroonga/en/
52
- * "Reference manual in Japanese":http://groonga.rubyforge.org/rroonga/ja/
51
+ * "Reference manual in English":http://ranguba.org/rroonga/en/
52
+ * "Reference manual in Japanese":http://ranguba.org/rroonga/ja/
53
53
 
54
54
  h2. Mailing list
55
55
 
@@ -0,0 +1,47 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- coding: utf-8 -*-
3
+ #
4
+ # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
5
+ #
6
+ # This library is free software; you can redistribute it and/or
7
+ # modify it under the terms of the GNU Lesser General Public
8
+ # License version 2.1 as published by the Free Software Foundation.
9
+ #
10
+ # This library is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ # Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with this library; if not, write to the Free Software
17
+ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
+
19
+ require 'ostruct'
20
+ require 'optparse'
21
+ require 'pathname'
22
+
23
+ require 'groonga'
24
+
25
+ options = OpenStruct.new
26
+ options.output_directory = "index-dump"
27
+
28
+ option_parser = OptionParser.new do |parser|
29
+ parser.banner += " DB_PATH"
30
+
31
+ parser.on("--output-directory=DIRECTORY",
32
+ "Dump index to under DIRECTORY",
33
+ "(#{options.ouitput_directory})") do |directory|
34
+ options.output_directory = directory
35
+ end
36
+ end
37
+ args = option_parser.parse!(ARGV)
38
+
39
+ if args.size != 1
40
+ puts(option_parser)
41
+ exit(false)
42
+ end
43
+ db_path = args[0]
44
+
45
+ Groonga::Database.open(db_path) do |database|
46
+ database.dump_index(options.output_directory)
47
+ end
@@ -0,0 +1,733 @@
1
+ h1. NEWS
2
+
3
+ h2(#2-1-0). 2.1.0: 2012-12-29
4
+
5
+ h3. Improvements
6
+
7
+ * Required groonga 2.1.0.
8
+ * Supported mass record deletion with block.
9
+ [groonga-dev,01138][Suggested by ongaeshi]
10
+ * Added Groonga::Normalizer.normalize (experimental). It normalize string.
11
+ e.g.)
12
+ Groonga::Normalizer.normalize("AbC") # => "abc"
13
+ Now, it removes any spaces by default, but it will be customized soon.
14
+ * Supported :normalizer option in DoubleArrayTrie, PatriciaTrie, Hash,
15
+ Schema when creating tables.
16
+ * [table] Added using normalizer accessor.
17
+ * [table] Used normalizer for checking key normalization is enabled or not.
18
+ * Added groonga-index-dump tool (experimental).
19
+ This tool dumps infomations for each index from DB.
20
+ Dumped informations are contained at "INDEX_NAME.dump" files in
21
+ "TARGET_TABLE_NAME.index_INDEX_COLUMN_NAME".
22
+ e.g.)
23
+
24
+ <pre>
25
+ $ cat index-dump.sdf
26
+ table_create --name Video --flags TABLE_HASH_KEY --key_type UInt32
27
+ table_create --name Tag --flags TABLE_HASH_KEY --key_type ShortText
28
+ column_create --table Video --name title --flags COLUMN_SCALAR --type ShortText
29
+ column_create --table Video --name tags --flags COLUMN_VECTOR --type Tag
30
+ column_create --table Tag --name index_tags --flags COLUMN_INDEX --type Video --source tags
31
+ load --table Video
32
+ [
33
+ {"_key":1,"title":"groonga Demo","tags":["IT","Server","groonga"]},
34
+ {"_key":2,"title":"Ultra Baseball","tags":["Sports","Baseball"]},
35
+ ]
36
+ $ groonga --file index-dump.sdf -n index-dump.db
37
+ $ groonga-index-dump --output-directory=path/to/index/ index-dump.db
38
+ $ cd path/to/index/
39
+ $ ls Tag.index_tags
40
+ Baseball.dump IT.dump Server.dump Sports.dump groonga.dump
41
+ $ cat path/to/index/Tag.index_tags/groonga.dump
42
+ index: Tag.index_tags term: <groonga> domain: Tag range: Video have_section: false have_weight: false have_position: false
43
+ weight position term_frequency record
44
+ 0 2 1 Video[ 1 ].tags
45
+ </pre>
46
+
47
+ * Added flag options to Groonga::IndexColumn#open_cursor.
48
+ The flag options are :with_section, :with_weight, :with_position.
49
+ They are enabled by default if each option is specified in creating
50
+ a index column.
51
+ * [Snippet] Showed the error message when specified context wasn't
52
+ associated with a database by Groonga::Database#open or #create.
53
+ * [inspect] Supported to display index column related flags for index
54
+ column only.
55
+ "index column related flags" are WITH_SECTION, WITH_WEIGHT and
56
+ WITH_POSITION.
57
+ * [inspect] Added default tokenizer and normalizer infomation.
58
+ * Supported Groonga::QueryLogger. This class is used to log query log.
59
+ Please see its reference for detail.
60
+
61
+ h3. Changes
62
+
63
+ * Move groonga-query-log-extract to groonga-query-log.
64
+ Please install groogna-query-log gem to use this tool.
65
+ how to install:
66
+ gem install groonga-query-log
67
+ * Returned Groonga::Array instead of Array by Table#sort.
68
+ [GitHub: #8][Suggested by Genki Takiuchi]
69
+ CAUTION: This is backward incompatible change. You need to use
70
+ record.value to get the original record.
71
+ The following code shows how to use old style:
72
+ result_since_2_1_0 = table.sort(["sort_key"])
73
+ result_before_2_1_0 = result_since_2_1_0.collect do |record|
74
+ record.value
75
+ end
76
+
77
+ h3. Thanks
78
+
79
+ * ongaeshi
80
+ * Genki Takiuchi
81
+
82
+ h2(#2-0-8). 2.0.8: 2012-12-02
83
+
84
+ h3. Improvements
85
+
86
+ * Required groonga 2.0.9.
87
+
88
+ h2(#2-0-7). 2.0.7: 2012-11-29
89
+
90
+ h3. Improvements
91
+
92
+ * Added Groonga::Posting#record. This method returns the record for
93
+ the record ID in table.
94
+ * Added Groonga::Posting#term. This method returns the record for the
95
+ term ID in table.
96
+ * Supported GRN_OBJ_KEY_VAR_SIZE for Groonga::Type#inspect.
97
+ GRN_OBJ_KEY_CAR_SIZE specifies its column is variable size.
98
+ * [Type] Added reader methods to Groonga::Type (#size and #flags).
99
+ * [Type] Added predicate methods to Groonga::Type.
100
+ Added methods are #fixed_size?, #variable_size?, #unsigned_integer?,
101
+ #integer?, #float? and #geo_point?.
102
+
103
+ h3. Changes
104
+
105
+ * Removed query log related codes.
106
+ This feature moved to groonga-query-log gem and it is relased soon.
107
+
108
+ h2(#2-0-6). 2.0.6: 2012-10-25
109
+
110
+ h3. Improvements
111
+
112
+ * [dump] Put index columns at the bottom (after loads).
113
+ It is for using offline index construction.
114
+ * Added term_extract in Table#select by @table.select {|record|
115
+ record.key.term_extract(text)}@ syntax.
116
+ * Supported :allow_leading_not as a option of #select.
117
+ You should use this option carefully. It takes a long time to search
118
+ all records which doesn't include a word. In addition, when the
119
+ number of records is large, to search them with this option is
120
+ slowly.
121
+
122
+ h3. Changes
123
+
124
+ * Changed option name for debug build in extconf.rb from --with-debug
125
+ to --enable-debug-log.
126
+
127
+ h3. Fixes
128
+
129
+ * Fixed display collapse in the references.
130
+
131
+ h2(#2-0-5). 2.0.5: 2012-09-28
132
+
133
+ h3. Improvements
134
+
135
+ * Supported groonga 2.0.7.
136
+ * Removed the workaround to install rroonga with old groonga.
137
+ * Added more error checks.
138
+ * Added Database#tables. [Suggested by @temitan]
139
+ * Supported Enumerator for #each on Database, Table, TableCursor and
140
+ IndexCursor.
141
+ * Added WGS84GeoPoint and TokyoGeoPoint.
142
+ * [dumper] supported dumping of WGS84GeoPoint and TokyoGeoPoint.
143
+ * [dumper] worked on non UTF-8 extenal output encoding environment.
144
+ * [dumper] sorted table and column names.
145
+ * [dumper] ignored invalid byte.
146
+ * [grndump] showed the warning for invalid character.
147
+ * [grndump] supported database that is created by old groonga.
148
+ * Added Groonga::Context#ruby_encoding.
149
+ * Added many documents in codes but showed no references.
150
+
151
+ h3. Fixes
152
+
153
+ * Added missing backslash escape for groonga command.
154
+
155
+ h3. Thanks
156
+
157
+ * @temitan
158
+
159
+ h2(#2-0-4). 2.0.4: 2012-05-02
160
+
161
+ h3. Fixes
162
+
163
+ * Fixed a bug that weight of match target is ignored.
164
+
165
+ h2(#2-0-3). 2.0.3: 2012-05-02
166
+
167
+ h3. Improvements
168
+
169
+ * Supported groonga 2.0.2.
170
+ * Groonga::Table#each supports options that are same as
171
+ Groonga::Table#open_cursor's one.
172
+ * [grndump] added @--order-by=id@ option. With this option, dumped
173
+ records are sorted by ID instead of key. You can restore records
174
+ without ID change if you don't delete any records. [#1341]
175
+ * Supported building on Windows with RubyInstaller for Windows with DevKit.
176
+ [GitHub#6] [Patch by @ongaeshi]
177
+ * Supported similar search by @table.select {|record|
178
+ record.column.similar_search(text)}@ syntax.
179
+
180
+ h3. Fixes
181
+
182
+ * Fixed a GC related crach bug.
183
+
184
+ h3. Thanks
185
+
186
+ * @ongaeshi
187
+
188
+ h2(#2-0-2). 2.0.2: 2012-03-29
189
+
190
+ h3. Improvements
191
+
192
+ * Supported groonga 2.0.1.
193
+ * Added "logos":http://groonga.rubyforge.org/#logo .
194
+
195
+ h3. Fixes
196
+
197
+ * Fixed a Groonga::Snipet related crach bug caused by GC.
198
+
199
+ h2(#2-0-0). 2.0.0: 2012-03-22
200
+
201
+ h3. Improvements
202
+
203
+ * Supported groonga 2.0.0.
204
+ * [gem][windows] Removed mswin packages.
205
+
206
+ h3. Fixes
207
+
208
+ * [test] Fixed version test failure. [GitHub#4] [Reported by @takkanm]
209
+ * Fixed a Groonga::Expression related crach bug caused by GC.
210
+ * [doc] Fixed broken HTML output. [groonga-dev,00699]
211
+ [Reported by Hirano]
212
+
213
+ h3. Thanks
214
+
215
+ * @takkanm
216
+ * Hirano
217
+
218
+ h2(#1-3-1). 1.3.1: 2012-01-29
219
+
220
+ h3. Improvements
221
+
222
+ * Supported groonga 1.3.0.
223
+ * [schema] Supported Int8, Int16, UInt8 and UInt16.
224
+ * [schema] Supported TokyoGeoPoint and WGS84GeoPoint.
225
+ * [schema][dumper] Supported Boolean and more built-in types.
226
+ [Reported by @mashiro]
227
+ * [schema] Supported type object as column type. [#1002]
228
+ * Added Groonga::VariableSizeColumn#compressed?. [#1004]
229
+ * Added Groonga::Record#score=.
230
+ * Improve performance for encoded string.
231
+ * Added Groonga::Command::Builder.escape_value.
232
+
233
+ h3. Thanks
234
+
235
+ * @mashiro
236
+
237
+ h2(#1-3-0). 1.3.0: 2011-11-29
238
+
239
+ h3. Improvements
240
+
241
+ * [schema] Remove also needless db.tables/ directory if it is empty.
242
+ * [schema] Remove also needless db.tables/table.columns/ directory if it is empty.
243
+ * Added query log parser.
244
+ * Added groonga-query-log-extract command.
245
+ * Added grntest log analyzer.
246
+ * Added JSON gem dependency.
247
+ * Supported groonga 1.2.8.
248
+ * Dropped groonga 1.2.7 or former support.
249
+ * Added Groonga::Table#defrag.
250
+ * Added Groonga::Table#rename.
251
+ * Added Groonga::Column#rename.
252
+ * Added Groonga::DoubleArrayTrie.
253
+ * [schema] Supported table rename.
254
+ * [schema] Supported column rename.
255
+ * [schema] Supported double array trie.
256
+
257
+ h3. Changes
258
+
259
+ * [schema] Don't use named path by default for location aware DB.
260
+
261
+ h3. Fixes
262
+
263
+ * Fixed a crash problem on GC.
264
+
265
+ h2. 1.2.9: 2011-09-16
266
+
267
+ h3. Fixes
268
+
269
+ * deleted unneed object files.
270
+
271
+ h2. 1.2.8: 2011-09-16
272
+
273
+ h3. Improvements
274
+
275
+ * supported "!=" expression for column in block of Groonga::Table#select.
276
+ * accepted Hash like object as options.
277
+ * supported vector in dump in Ruby syntax.
278
+ * supported GRN_CTX_PER_DB environment variables.
279
+ (NOTE: You should pay attention to use this variables.)
280
+
281
+ h2. 1.2.7: 2011-08-29
282
+
283
+ h3. Improvements
284
+
285
+ * Added Groonga::Snippet#close that frees resource.
286
+
287
+ h3. Fixes
288
+
289
+ * Fixed build error on Ruby 1.8.7.
290
+
291
+ h2. 1.2.6: 2011-08-29
292
+
293
+ h3. Improvements
294
+
295
+ * Supported groonga 1.2.5.
296
+ * Added Groonga::Record#added? that returns true when the record is just added.
297
+ * Added Groonga::VariableSizeColumn#defrag? that defrags the column.
298
+ * Added Groonga::Database#defrag that defrags the all variable size columns.
299
+ * Supported column name specification by symbol.
300
+
301
+ h3. Fixes
302
+
303
+ * Fixed install *.rb failure by gem install.
304
+ * Fixed some memory leaks.
305
+ * Fixed crash bug on exit.
306
+
307
+ h2. 1.2.5: 2011-08-05
308
+
309
+ h3. Improvements
310
+
311
+ * Re-supported tar.gz distribution.
312
+ * Added Groonga::Context#close.
313
+ * Added Groonga::Context#closed?.
314
+ * Deprecated Groonga::ObjectClosed. Use Groonga::Closed instead.
315
+ * grndump: Added --exclude-table option that specifies not dumped tables.
316
+ * dump: Removed path equality check.
317
+
318
+ h3. Fixes
319
+
320
+ * dump: Fixed wrong index table type.
321
+ * Re-supported auto groonga install.
322
+
323
+ h2. 1.2.4: 2011-06-29
324
+
325
+ h3. Improvements
326
+
327
+ * Supported groonga 1.2.3.
328
+
329
+ h3. Fixes
330
+
331
+ * Re-supported auto groonga install.
332
+ * Added missing pkg-config gem dependency.
333
+
334
+ h2. 1.2.3: 2011-06-27
335
+
336
+ h3. Fixes
337
+
338
+ * remove object files in gem packages.
339
+ * fix charactor corruption in reference.
340
+
341
+ h2. 1.2.2: 2011-06-27
342
+
343
+ h3. Improvements
344
+
345
+ * created "Developers" page in English.
346
+ * added description for tasks of "html:publish" and "publish".
347
+
348
+ h3. Changes
349
+
350
+ * Groonga::Record#attributes return same attributes object for duplicate records.
351
+ * added document for Groonga::Record#attributes.
352
+ * changed tool name in document page for creating document.
353
+ * moved NEWS*.rdoc and tutorial.texttile to doc/text/.
354
+
355
+ h3. Fixes
356
+
357
+ * fixed the tutorial path in index page.
358
+ * fixed the path of tutorial in index page in English.
359
+ * follow the groonga downlowd URL change. [mallowlabs]
360
+
361
+ h3. Thanks
362
+
363
+ * mallowlabs
364
+
365
+ h2. 1.2.1: 2011-06-07
366
+
367
+ h3. Improvements
368
+
369
+ * added document of Groonga::Table#pagination.
370
+ * added grndump in package.
371
+ * corresponded recursive reference of Records by Groonga::Record#attributes.
372
+ (experimental) [mooz]
373
+ * Groonga::Record#attributes supported data including _score.
374
+ * corresponded Windows for 64-bit.
375
+ (but there's not 64-bit ruby, so rroonga for 64-bit windows cannot run.)
376
+ * added Groonga::Posting.
377
+ * added :delimit, :token_delimiter for alias of TokenDelimit.
378
+ * Groonga::DatabaseDumper#dump corresponded lexicon table.
379
+ * Groonga::DatabaseDumper#dump corresponded data including plugin.
380
+ * added Groonga::IndexColumn#open_cursor. [yoshihara]
381
+ * added Groonga::IndexCursor. [yoshihara]
382
+ * added Groonga::Object#builtin?. [yoshihara]
383
+
384
+ h3. Changes
385
+
386
+ * check existence of column before removing it.
387
+ * removed grn expression document.
388
+
389
+ h3. Thanks
390
+
391
+ * mooz
392
+ * yoshihara
393
+
394
+ h2. 1.2.0: 2011-04-01
395
+
396
+ h3. Improvements
397
+
398
+ * Supported groonga 1.2.0.
399
+ * Added Groonga::Accessor#local_name.
400
+ * Added Groonga::IndexColumn#with_section?.
401
+ * Added Groonga::IndexColumn#with_weight?.
402
+ * Added Groonga::IndexColumn#with_position?.
403
+ * Groonga::Schema.dump supported groonga command format dump.
404
+ * Added grndump command.
405
+ * Groonga::Database#each supports order customize.
406
+ * Added Groonga::Context#match_escalation_threshold.
407
+ * Added Groonga::Context#match_escalation_threshold=.
408
+ * Improved error message.
409
+ * Supported Rubyish name like :short_text instead of the
410
+ official type name like "ShortText" in Groonga::Schema.
411
+
412
+ h2. 1.1.0: 2011-02-09
413
+
414
+ h3. Improvements
415
+
416
+ * Supported groonga 1.1.0.
417
+ * Added Groonga::Plugin.register.
418
+
419
+ h2. 1.0.9: 2011-01-29
420
+
421
+ h3. Improvements
422
+
423
+ * Supported gem creation on Windows. [Patch by ongaeshi]
424
+ * Supported generated directory that is created by Groonga::Schema removal
425
+ when table or column is removed.
426
+ * Added Groonga::Context#create_database.
427
+ * Added Groonga::Context#open_database.
428
+ * Added Groonga::Column#indexes.
429
+ * Supported a notation for specifying index column as match target in
430
+ Groonga::Table#select:
431
+ table.select do |record|
432
+ record.match("query") do |match_record|
433
+ (match_record.index("Terms.title") * 1000) |
434
+ (match_record.index("Terms.description") * 100)
435
+ match_record.content
436
+ end
437
+ end
438
+ * Supported prefix search in Groonga::Table#select:
439
+ table.select do |record|
440
+ record.name.prefix_search("groo")
441
+ end
442
+ * Supported suffix search in Groonga::Table#select:
443
+ table.select do |record|
444
+ record.name.suffix_search("nga")
445
+ end
446
+ * Supported :default_tokenizer schema dump.
447
+ * Supported :key_normalize schema dump.
448
+ * Supported pseudo columns by Groonga::Table#have_column?.
449
+ * Supported pseudo columns by Groonga::Record#have_column?.
450
+
451
+ h3. Changes
452
+
453
+ * Renamed Groonga::Operatoion to Groonga::Operator.
454
+ (Groonga::Operation is deprecated but still usable.)
455
+
456
+ h3. Fixes
457
+
458
+ * Fixed a crash bug when not default Groonga::Context is used in
459
+ Groonga::Table#select.
460
+ * Fixed a crash bug when an exception is occurred.
461
+
462
+ h3. Thanks
463
+
464
+ * ongaeshi
465
+
466
+ h2. 1.0.8: 2010-12-25
467
+
468
+ h3. Improvements
469
+
470
+ * Improved Groonga::Schema's n-gram tokenizer detect process.
471
+
472
+ h3. Fixes
473
+
474
+ * Fixed GC problem caused by match_target in select.
475
+
476
+ h2. 1.0.7: 2010-12-19
477
+
478
+ h3. Fixes
479
+
480
+ * Supported pkg-config installed by RubyGems on Ruby 1.8. [Reported by @kamipo]
481
+ * Fixed a memory leak in Groonga::Table#columns.
482
+
483
+ h3. Thanks
484
+
485
+ * @kamipo
486
+
487
+ h2. 1.0.5: 2010-11-29
488
+
489
+ h3. Improvements
490
+
491
+ * Added snail_case type name aliases for built-in groonga types
492
+ to Groonga::Schema.
493
+
494
+ h3. Fixes
495
+
496
+ * Fixed a crash bug on GC. [Ryo Onodera]
497
+
498
+ h2. 1.0.4: 2010-11-29
499
+
500
+ h3. Improvements
501
+
502
+ * Supported groonga 1.0.4.
503
+ * Added Groonga::UnsupportedCommandVersion.
504
+ * Added Groonga::Record#support_sub_records?.
505
+ * Added Groonga::Record#eql?とGroonga::Record#hash.
506
+ (treat two the same table and the same record ID object as the same Hash key.)
507
+ * Supported pkg-config gem.
508
+ * Supported generic #record_id object handle for custom record object
509
+ in Groonga::Table#select.
510
+ * Added Groonga::Record#record_id.
511
+ * Added Groonga::Table#support_key?.
512
+ * Added Groonga::Record#support_key?.
513
+ * Added Groonga::Record#support_key?.
514
+ * Added Groonga::Column#reference_key?.
515
+ * Added Groonga::Column#index_column?.
516
+ * Added Groonga::Schema#dump.
517
+ * Supported multi columns index creation in Groonga::Schema.
518
+ * Supported meaningful path in Groonga::Schema.
519
+ * Made reference table omissible when index column definition
520
+ in Groonga::Schema.
521
+ * Added Groonga::Schema.remove_column.
522
+ * Added convenience timestamps methods to define "created_at" and
523
+ "updated_at" columns in Groonga::Schema.
524
+ * Added Groonga::Context#support_zlib?.
525
+ * Added Groonga::Context#support_lzo?.
526
+ * Added Groonga::Database#touch.
527
+ * Added Groonga::Table#exist?.
528
+ * Added Groonga::Record#valid?.
529
+ * Added Groonga::Column#vector?.
530
+ * Added Groonga::Column#scalar?.
531
+ * Added Groonga::Record#vector_column?.
532
+ * Added Groonga::Record#scalar_column?.
533
+ * Accepted any object that has record_raw_id method for record ID required
534
+ location. Groonga::Record isn't required.
535
+ * Added Groonga::Record#record_raw_id.
536
+ * Accepted any object that as to_ary method for reference vector column value.
537
+
538
+ h2. Changes
539
+
540
+ * Used :key as the default value of :order_by of
541
+ Groonga::PatriciaTrie#open_cursor.
542
+ * Removed a deprecated Groonga::TableKeySupport#find.
543
+ * Used ShortText as the default key type of
544
+ Groonga::Hash#create and Groonga::PatriciaTrie#create.
545
+ * Renamed Groonga::Schema#load to Groonga::Schema#restore.
546
+ * Supported pkg-confg 1.0.7.
547
+ * Added Groonga::Column#index? and deprecated Groonga::Column#index_column?.
548
+ * Added Groonga::Column#reference? and deprecated
549
+ Groonga::Column#reference_column?.
550
+
551
+ h3. Fixes
552
+
553
+ * Fixed index for key isn't be able to define.
554
+ * Fixed a crash problem on GC.
555
+
556
+ h2. 1.0.1: 2010-09-12
557
+
558
+ h3. Fixes
559
+
560
+ * Fixed wrong flag used on creating a table. [Reported by ono matope]
561
+
562
+ h3. Thanks
563
+
564
+ * ono matope
565
+
566
+ h2. 1.0.0: 2010-08-29
567
+
568
+ * Supported groonga 1.0.0.
569
+ * Added Groonga::CASError.
570
+ * Added :order_by option to Groonga::Table#open_cursor.
571
+ * Added Groonga::PatriciaTrie#open_prefix_cursor that creates a cursor
572
+ to retrieve each records by prefix search.
573
+ * Added Groonga::PatriciaTrie#open_rk_cursor that creats a cursor to
574
+ retrieve katakana keys from roman letters and/or hiragana.
575
+ * Added Groonga::PatriciaTrie#open_near_cursor that creates a cursor to
576
+ retrieve records order by distance from key.
577
+ * Supported _key as index source.
578
+
579
+ h2. 0.9.5: 2010-07-20
580
+
581
+ * Supported groonga 0.7.4.
582
+ * Imporoved Groonga::Table#select:
583
+ * Supported weight match:
584
+
585
+ Here is an example to match source column or title column and
586
+ title column has high score:
587
+ table.select do |record|
588
+ (record.title * 10 | record.source) =~ "query"
589
+ end
590
+ * Supported and representation for and conditions:
591
+
592
+ Here are examples that represents the same condition:
593
+ table.select do |record|
594
+ conditions = []
595
+ conditions << record.title =~ "query"
596
+ conditions << record.updated_at > Time.parse("2010-07-29T21:14:29+09:00")
597
+ conditions
598
+ end
599
+
600
+ table.select do |record|
601
+ (record.title =~ "query") &
602
+ (record.updated_at > Time.parse("2010-07-29T21:14:29+09:00"))
603
+ end
604
+ * Provided groonga runtime version: Groonga::VERSION
605
+ * Added Groonga::Table#support_sub_records?
606
+ * Supported pagination: Groonga::Table#paginate, Groonga::Pagination
607
+
608
+ h2. 0.9.4: 2010-04-22
609
+
610
+ * Fixed release miss.
611
+
612
+ h2. 0.9.3: 2010-04-22
613
+
614
+ * Fixed release miss.
615
+
616
+ h2. 0.9.2: 2010-04-22
617
+
618
+ * Supported groonga 0.1.9.
619
+ * Many.
620
+
621
+ h2. 0.9.1: 2010-02-09
622
+
623
+ * Supported groonga 0.1.6
624
+
625
+ h2. 0.9.0: 2010-02-09
626
+
627
+ * Supported groonga 0.1.5
628
+ * Added API
629
+ * Groonga::Object#context
630
+ * Groonga::Record#n_sub_records
631
+ * Groonga::Context#send
632
+ * Groonga::Context#receive
633
+ * Groonga::PatriciaTrie#prefix_search [Tasuku SUENAGA]
634
+ * Groonga::Object#path [Ryo Onodera]
635
+ * Groonga::Object#lock [Tasuku SUENAGA]
636
+ * Groonga::Object#unlock [Tasuku SUENAGA]
637
+ * Groonga::Object#locked? [Tasuku SUENAGA]
638
+ * Groonga::Object#temporary?
639
+ * Groonga::Object#persistent?
640
+ * Groonga::ObjectClosed
641
+ * Groonga::Context.[]
642
+ * Groonga::Table#column_value
643
+ * Groonga::Table#set_column_value
644
+ * Changed API
645
+ * Groonga::Table#select, Groonga::Column#select
646
+ * They also accept Groonga::Expression
647
+ * Added :syntax option that specifies grn expression syntax
648
+ * Groonga::Table#open_cursor
649
+ * Added :offset option that specifies offset.
650
+ * Added :limit option that specifies max number of records.
651
+ * Changed Groonga::Expression.parse options:
652
+ * (nil (default) -> :column) -> (nil (default) -> :query)
653
+ * :column -> removed
654
+ * :table -> :query
655
+ * :table_query -> :query
656
+ * :expression -> :script
657
+ * :language -> :script
658
+ * Groonga::Table#define_column, Groonga::Table#define_index_column
659
+ * Defined column becomes persistent table by default
660
+ * Groonga::Table#[] -> Groonga::Table#value
661
+ * Groonga::Table#[]= -> Groonga::Table#set_value
662
+ * Groonga::Table#find -> Groonga::Table#[]
663
+ * Groonga::Table#find -> obsolete
664
+ * Groonga::Table#[]= -> removed
665
+ * Groonga::TableKeySupport#[]= is alias of Groonga::TableKeySupport#add
666
+ * Changed exception class to Groonga::NoSuchColumn from
667
+ Groonga::InvalidArgument when Groonga::Record accesses nonexistent
668
+ a column.
669
+ * Bug fixes
670
+ * Fixed a bug that context isn't passed to schema [dara]
671
+ * Fixed a bug that Groonga::PatriciaTrie#tag_keys doesn't return
672
+ that last text. [Ryo Onodera]
673
+ * Added --with-debug option to extconf.rb for debug build.
674
+ * Fixed a bug that Ruby 1.9.1 may fail extconf.rb.
675
+
676
+ h3. Thanks
677
+
678
+ * dara
679
+ * Ryo Onodera
680
+ * Tasuku SUENAGA
681
+
682
+ h2. 0.0.7: 2009-10-02
683
+
684
+ * Supported groonga 0.1.4
685
+ * Added API
686
+ * Groonga::PatriciaTrie#scan
687
+ * Groonga::PatriciaTrie#tag_keys
688
+ * Groonga::Expression#snippet
689
+ * Groonga::Object#append
690
+ * Groonga::Object#prepend
691
+
692
+ h2. 0.0.6: 2009-07-31
693
+
694
+ * Supported groonga 0.1.1.
695
+ * Fixed documents [id:mat_aki]
696
+ * Supported groonga expression for searching.
697
+ * Added API
698
+ * Groonga::Table#union!
699
+ * Groonga::Table#intersect!
700
+ * Groonga::Table#differene!
701
+ * Groonga::Table#merge!
702
+ * Provided tar.gz [id:m_seki]
703
+ * Fixed memory leaks
704
+
705
+ h2. 0.0.3: 2009-07-18
706
+
707
+ * Added Groonga::TableKeySupport#has_key? [#26145] [Tasuku SUENAGA]
708
+ * Groonga::Record#[] raises an exception for nonexistent
709
+ column name. [#26146] [Tasuku SUENAGA]
710
+ * Supported 32bit environment [niku]
711
+ * Added a test for N-gram index search [dara]
712
+ * Added APIs
713
+ * Groonga::Record#incemrent!
714
+ * Groonga::Record#decemrent!
715
+ * Groonga::Record#lock
716
+ * Groonga::Table#lock
717
+ * Groonga::Schema: A DSL for schema definition
718
+ * Groonga::Expression
719
+
720
+ h2. 0.0.2: 2009-06-04
721
+
722
+ * Supported groonga 0.0.8 [mori]
723
+ * Improved preformance: cache key, value, domain and range
724
+ * Improved API
725
+ * Added documents
726
+ * Supported Ruby 1.9
727
+ * Bug fixes:
728
+ * Fixed install process [Tasuku SUENAGA]
729
+ * Fixed memory leaks
730
+
731
+ h2. 0.0.1: 2009-04-30
732
+
733
+ * Initial release!