rroonga 4.0.3-x86-mingw32 → 4.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 (682) hide show
  1. checksums.yaml +13 -5
  2. data/Gemfile +1 -1
  3. data/README.textile +1 -1
  4. data/Rakefile +8 -1
  5. data/bin/grndump +1 -1
  6. data/bin/grntest-log-analyze +1 -1
  7. data/bin/groonga-database-inspect +1 -1
  8. data/bin/groonga-index-dump +1 -1
  9. data/doc/text/news.textile +28 -0
  10. data/ext/groonga/extconf.rb +12 -2
  11. data/ext/groonga/rb-grn-accessor.c +2 -1
  12. data/ext/groonga/rb-grn-array-cursor.c +1 -1
  13. data/ext/groonga/rb-grn-array.c +1 -1
  14. data/ext/groonga/rb-grn-column.c +1 -1
  15. data/ext/groonga/rb-grn-context.c +7 -5
  16. data/ext/groonga/rb-grn-database.c +1 -1
  17. data/ext/groonga/rb-grn-double-array-trie-cursor.c +1 -1
  18. data/ext/groonga/rb-grn-double-array-trie.c +1 -1
  19. data/ext/groonga/rb-grn-encoding-support.c +1 -1
  20. data/ext/groonga/rb-grn-encoding.c +1 -1
  21. data/ext/groonga/rb-grn-exception.c +1 -1
  22. data/ext/groonga/rb-grn-expression-builder.c +1 -1
  23. data/ext/groonga/rb-grn-expression.c +1 -1
  24. data/ext/groonga/rb-grn-fix-size-column.c +1 -1
  25. data/ext/groonga/rb-grn-geo-point.c +1 -1
  26. data/ext/groonga/rb-grn-hash-cursor.c +1 -1
  27. data/ext/groonga/rb-grn-hash.c +1 -1
  28. data/ext/groonga/rb-grn-index-column.c +1 -1
  29. data/ext/groonga/rb-grn-index-cursor.c +1 -1
  30. data/ext/groonga/rb-grn-logger.c +1 -1
  31. data/ext/groonga/rb-grn-normalizer.c +1 -1
  32. data/ext/groonga/rb-grn-object.c +71 -45
  33. data/ext/groonga/rb-grn-operator.c +1 -1
  34. data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
  35. data/ext/groonga/rb-grn-patricia-trie.c +1 -1
  36. data/ext/groonga/rb-grn-plugin.c +1 -1
  37. data/ext/groonga/rb-grn-posting.c +1 -1
  38. data/ext/groonga/rb-grn-procedure-type.c +40 -0
  39. data/ext/groonga/rb-grn-procedure.c +17 -4
  40. data/ext/groonga/rb-grn-query-logger.c +1 -1
  41. data/ext/groonga/rb-grn-record.c +1 -1
  42. data/ext/groonga/rb-grn-snippet.c +1 -1
  43. data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
  44. data/ext/groonga/rb-grn-table-cursor.c +1 -1
  45. data/ext/groonga/rb-grn-table-key-support.c +1 -1
  46. data/ext/groonga/rb-grn-table.c +3 -2
  47. data/ext/groonga/rb-grn-type.c +1 -1
  48. data/ext/groonga/rb-grn-utils.c +1 -1
  49. data/ext/groonga/rb-grn-variable-size-column.c +55 -27
  50. data/ext/groonga/rb-grn-variable.c +1 -1
  51. data/ext/groonga/rb-grn.h +4 -2
  52. data/ext/groonga/rb-groonga.c +3 -2
  53. data/extconf.rb +1 -1
  54. data/lib/1.9/groonga.so +0 -0
  55. data/lib/2.0/groonga.so +0 -0
  56. data/lib/2.1/groonga.so +0 -0
  57. data/lib/groonga.rb +1 -1
  58. data/lib/groonga/column.rb +1 -1
  59. data/lib/groonga/context.rb +1 -1
  60. data/lib/groonga/context/command-executor.rb +1 -1
  61. data/lib/groonga/database-inspector.rb +1 -1
  62. data/lib/groonga/database.rb +1 -1
  63. data/lib/groonga/dumper.rb +1 -1
  64. data/lib/groonga/expression-builder-19.rb +1 -1
  65. data/lib/groonga/expression-builder.rb +1 -1
  66. data/lib/groonga/geo-point.rb +1 -1
  67. data/lib/groonga/grntest-log.rb +1 -1
  68. data/lib/groonga/index-column.rb +1 -1
  69. data/lib/groonga/logger.rb +1 -1
  70. data/lib/groonga/memory-pool.rb +1 -2
  71. data/lib/groonga/pagination.rb +1 -1
  72. data/lib/groonga/patricia-trie.rb +1 -1
  73. data/lib/groonga/posting.rb +1 -1
  74. data/lib/groonga/query-logger.rb +1 -1
  75. data/lib/groonga/record.rb +6 -2
  76. data/lib/groonga/schema.rb +1 -1
  77. data/lib/groonga/statistic-measurer.rb +1 -1
  78. data/lib/groonga/sub-records.rb +1 -1
  79. data/lib/groonga/table.rb +1 -1
  80. data/misc/grnop2ruby.rb +1 -1
  81. data/rroonga-build.rb +4 -4
  82. data/rroonga.gemspec +3 -3
  83. data/test/groonga-test-utils.rb +4 -4
  84. data/test/run-test.rb +1 -1
  85. data/test/test-accessor.rb +1 -1
  86. data/test/test-array.rb +1 -1
  87. data/test/test-column.rb +1 -1
  88. data/test/test-command-select.rb +1 -1
  89. data/test/test-context.rb +21 -16
  90. data/test/test-convert.rb +1 -1
  91. data/test/test-database-dumper.rb +1 -1
  92. data/test/test-database-inspector.rb +1 -1
  93. data/test/test-database.rb +38 -25
  94. data/test/test-double-array-trie.rb +1 -1
  95. data/test/test-encoding.rb +1 -1
  96. data/test/test-exception.rb +12 -7
  97. data/test/test-expression-builder.rb +1 -1
  98. data/test/test-expression.rb +1 -1
  99. data/test/test-fix-size-column.rb +1 -1
  100. data/test/test-geo-point.rb +1 -1
  101. data/test/test-gqtp.rb +1 -1
  102. data/test/test-hash.rb +1 -1
  103. data/test/test-index-column.rb +1 -1
  104. data/test/test-index-cursor.rb +1 -1
  105. data/test/test-lock-timeout.rb +1 -1
  106. data/test/test-logger.rb +1 -1
  107. data/test/test-memory-pool.rb +1 -1
  108. data/test/test-normalizer.rb +1 -1
  109. data/test/test-pagination.rb +1 -1
  110. data/test/test-patricia-trie.rb +1 -1
  111. data/test/test-plugin.rb +1 -1
  112. data/test/test-procedure.rb +9 -2
  113. data/test/test-record.rb +1 -1
  114. data/test/test-remote.rb +1 -1
  115. data/test/test-schema-create-table.rb +1 -1
  116. data/test/test-schema-dumper.rb +1 -1
  117. data/test/test-schema-type.rb +1 -1
  118. data/test/test-schema.rb +1 -1
  119. data/test/test-snippet.rb +1 -1
  120. data/test/test-statistic-measurer.rb +1 -1
  121. data/test/test-sub-records.rb +1 -1
  122. data/test/test-table-dumper.rb +1 -1
  123. data/test/test-table-key-support.rb +1 -1
  124. data/test/test-table-offset-and-limit.rb +1 -1
  125. data/test/test-table-select-mecab.rb +1 -1
  126. data/test/test-table-select-normalize.rb +1 -1
  127. data/test/test-table-select-weight.rb +1 -1
  128. data/test/test-table-select.rb +1 -1
  129. data/test/test-table-traverse.rb +1 -1
  130. data/test/test-table.rb +1 -1
  131. data/test/test-type.rb +1 -1
  132. data/test/test-variable-size-column.rb +136 -67
  133. data/test/test-variable.rb +1 -1
  134. data/test/test-vector-column.rb +1 -1
  135. data/test/test-version.rb +1 -1
  136. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  137. data/vendor/local/bin/groonga.exe +0 -0
  138. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  139. data/vendor/local/bin/libgroonga-0.dll +0 -0
  140. data/vendor/local/bin/libmecab-1.dll +0 -0
  141. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  142. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  143. data/vendor/local/bin/libstdc++-6.dll +0 -0
  144. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  145. data/vendor/local/bin/mecab-config +0 -0
  146. data/vendor/local/bin/mecab.exe +0 -0
  147. data/vendor/local/include/groonga/groonga.h +38 -5
  148. data/vendor/local/include/groonga/groonga/plugin.h +11 -83
  149. data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
  150. data/vendor/local/include/msgpack.h +1 -0
  151. data/vendor/local/include/msgpack/fbuffer.h +47 -0
  152. data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
  153. data/vendor/local/include/msgpack/object.hpp +12 -3
  154. data/vendor/local/include/msgpack/pack.h +7 -3
  155. data/vendor/local/include/msgpack/pack.hpp +26 -7
  156. data/vendor/local/include/msgpack/pack_template.h +34 -7
  157. data/vendor/local/include/msgpack/sbuffer.h +3 -2
  158. data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
  159. data/vendor/local/include/msgpack/sysdep.h +27 -14
  160. data/vendor/local/include/msgpack/type.hpp +2 -1
  161. data/vendor/local/include/msgpack/type/define.hpp +747 -561
  162. data/vendor/local/include/msgpack/type/float.hpp +24 -4
  163. data/vendor/local/include/msgpack/type/int.hpp +78 -13
  164. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
  165. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
  166. data/vendor/local/include/msgpack/unpack.h +9 -9
  167. data/vendor/local/include/msgpack/unpack_define.h +16 -14
  168. data/vendor/local/include/msgpack/unpack_template.h +19 -8
  169. data/vendor/local/include/msgpack/version.h +1 -1
  170. data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
  171. data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
  172. data/vendor/local/include/msgpack/zbuffer.h +3 -2
  173. data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
  174. data/vendor/local/include/msgpack/zone.h +5 -4
  175. data/vendor/local/include/msgpack/zone.hpp +10 -1
  176. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  177. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  178. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  179. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
  180. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  181. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  182. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  183. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
  184. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  185. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  186. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  187. data/vendor/local/lib/groonga/plugins/table/table.la +1 -1
  188. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  189. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  190. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  191. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  192. data/vendor/local/lib/libgroonga.a +0 -0
  193. data/vendor/local/lib/libgroonga.dll.a +0 -0
  194. data/vendor/local/lib/libgroonga.la +1 -1
  195. data/vendor/local/lib/libmecab.a +0 -0
  196. data/vendor/local/lib/libmecab.dll.a +0 -0
  197. data/vendor/local/lib/libmecab.la +2 -2
  198. data/vendor/local/lib/libmsgpack.a +0 -0
  199. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  200. data/vendor/local/lib/libmsgpack.la +1 -1
  201. data/vendor/local/lib/libmsgpackc.a +0 -0
  202. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  203. data/vendor/local/lib/libmsgpackc.la +1 -1
  204. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  205. data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
  206. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  207. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  208. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  209. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  210. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  211. data/vendor/local/sbin/groonga-httpd-restart +0 -0
  212. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  213. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
  214. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
  215. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
  216. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
  217. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  218. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
  219. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  220. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
  221. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  222. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
  223. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
  224. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
  225. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
  228. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
  229. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
  230. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
  231. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
  232. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
  233. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
  234. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
  235. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
  236. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
  237. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
  238. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
  239. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
  240. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
  241. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
  242. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
  243. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
  244. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
  245. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
  246. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
  247. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
  248. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
  249. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
  250. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
  251. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
  252. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
  253. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
  254. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
  255. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
  256. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
  257. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
  258. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
  259. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
  260. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
  261. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
  262. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
  263. data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
  264. data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
  265. data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
  266. data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
  267. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
  268. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
  269. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
  270. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
  271. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
  272. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
  273. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
  274. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
  275. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
  276. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
  277. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
  278. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
  279. data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
  280. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
  281. data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
  282. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
  283. data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
  284. data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
  285. data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
  286. data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
  287. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
  288. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
  289. data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
  290. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
  291. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
  292. data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
  293. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
  294. data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
  295. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
  296. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
  297. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
  298. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
  299. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
  300. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
  301. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
  302. data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
  303. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  304. data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
  305. data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
  306. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
  307. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
  308. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
  309. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
  310. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
  311. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
  312. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
  313. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
  314. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
  315. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
  316. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
  317. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
  318. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
  319. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
  320. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
  321. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
  322. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
  323. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
  324. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
  325. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
  326. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
  327. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
  328. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
  329. data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
  330. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
  331. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
  332. data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
  333. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
  334. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
  335. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
  360. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
  361. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
  362. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
  363. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
  364. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
  365. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
  366. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
  367. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
  370. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
  371. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
  372. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  373. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
  374. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
  375. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
  376. data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
  377. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
  378. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
  390. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
  391. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
  392. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
  393. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
  394. data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
  395. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
  396. data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
  397. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
  398. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
  399. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
  400. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
  401. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
  402. data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
  403. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  404. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  405. data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
  406. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
  407. data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
  408. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
  409. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
  410. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
  411. data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
  412. data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
  413. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
  414. data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
  415. data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
  416. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
  417. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
  418. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
  419. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
  420. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
  421. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
  422. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
  423. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  424. data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
  425. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
  426. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
  427. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
  428. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
  429. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
  430. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
  431. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
  432. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
  433. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
  434. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
  435. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
  436. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
  486. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
  487. data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
  488. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
  489. data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
  490. data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
  491. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
  492. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
  493. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
  494. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
  495. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
  496. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
  497. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
  498. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
  499. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
  500. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
  501. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
  502. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
  503. data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
  504. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
  505. data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
  506. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
  507. data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
  508. data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
  509. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
  510. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
  511. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
  512. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
  513. data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
  514. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
  515. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
  516. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
  517. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
  518. data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
  519. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
  520. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
  521. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
  522. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
  523. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
  524. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
  525. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
  526. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
  527. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
  529. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
  530. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
  531. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
  532. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
  533. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
  534. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
  535. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
  536. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
  537. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
  538. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
  539. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
  540. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
  541. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
  542. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
  543. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
  544. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
  545. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
  546. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
  547. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
  548. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
  549. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
  550. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
  551. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
  552. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
  553. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
  554. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
  555. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
  556. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
  557. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
  558. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
  559. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
  560. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
  561. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
  562. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
  563. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
  564. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
  565. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
  566. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
  567. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
  568. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
  573. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
  574. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
  575. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
  576. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
  577. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
  578. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
  579. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
  580. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
  581. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
  582. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
  583. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
  584. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
  585. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
  586. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
  587. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
  588. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
  589. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
  590. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
  591. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
  592. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
  593. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
  594. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
  595. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
  596. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  597. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
  598. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
  599. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
  600. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
  601. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
  602. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
  603. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
  604. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
  605. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
  606. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
  607. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
  608. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
  609. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
  610. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
  611. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
  612. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
  613. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
  614. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
  615. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
  616. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
  617. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
  618. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
  619. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
  620. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
  621. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
  622. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
  623. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
  624. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
  625. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
  626. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
  627. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  628. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  629. data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
  630. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
  631. data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
  632. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
  633. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
  634. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
  635. data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
  636. data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
  637. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
  638. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
  639. data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
  640. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
  641. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
  642. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
  643. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
  644. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
  645. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
  646. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
  647. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  648. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
  649. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
  650. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
  651. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
  652. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
  653. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
  654. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
  655. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
  656. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
  657. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
  658. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
  659. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
  660. data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
  661. data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
  662. data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
  663. data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
  664. data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
  665. data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
  666. data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
  667. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
  668. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
  669. data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
  670. data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
  671. data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
  672. data/vendor/local/share/groonga/html/admin/index.html +75 -75
  673. data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
  674. data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
  675. data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
  676. data/vendor/local/share/license/groonga/README.md +49 -0
  677. data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
  678. data/vendor/local/share/man/man1/groonga.1 +2008 -1240
  679. metadata +111 -83
  680. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
  681. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
  682. data/vendor/local/share/license/groonga/AUTHORS +0 -17
@@ -11,10 +11,10 @@ pluginsdir=${libdir}/groonga/plugins
11
11
  groonga=${bindir}/groonga.exe
12
12
  groonga_httpd=${sbindir}/groonga-httpd.exe
13
13
  groonga_suggest_create_dataset=${bindir}/groonga-suggest-create-dataset.exe
14
- groonga_version=4.0.2
14
+ groonga_version=4.0.5
15
15
 
16
16
  Name: Groonga
17
17
  Description: An Embeddable Fulltext Search Engine
18
- Version: 4.0.2
18
+ Version: 4.0.5
19
19
  Libs: -L${libdir} -lgroonga
20
20
  Cflags: -I${includedir}/groonga
@@ -0,0 +1,10 @@
1
+ prefix=/home/kou/work/c/groonga.clean/packages/windows/dist-x86
2
+ exec_prefix=${prefix}
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include
5
+
6
+ Name: MessagePack
7
+ Description: Binary-based efficient object serialization library
8
+ Version: 0.5.9
9
+ Libs: -L${libdir} -lmsgpack
10
+ Cflags: -I${includedir}
File without changes
@@ -1,4 +1,4 @@
1
1
  # Sphinx build info version 1
2
2
  # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
- config: 32813cd21447e4780f0542ffa231b9e8
3
+ config: 3aa209e1a7a5adf5eb57cf5c7e89046b
4
4
  tags: 645f666f9bcd5a90fca523b33c5a78b7
@@ -154,9 +154,7 @@ Now you can send pull request on GitHub. You just access
154
154
  your repository page on GitHub and press `Pull Request`
155
155
  button.
156
156
 
157
- .. seealso:: `Help.GitHub - Sending pull requests`_.
158
-
159
- .. _Help.GitHub - Sending pull requests: http://help.github.com/pull-requests/
157
+ .. seealso:: `Help.GitHub - Sending pull requests <http://help.github.com/pull-requests/>`_.
160
158
 
161
159
  How to send patch
162
160
  +++++++++++++++++
@@ -193,6 +191,4 @@ Here are command lines to add new translation language::
193
191
  Please substitute `${LANGUAGE}` with your language code such
194
192
  as 'ja'.
195
193
 
196
- .. seealso:: `Codes for the Representation of Names of Languages`_.
197
-
198
- .. _Codes for the Representation of Names of Languages: http://www.loc.gov/standards/iso639-2/php/English_list.php
194
+ .. seealso:: `Codes for the Representation of Names of Languages <http://www.loc.gov/standards/iso639-2/php/English_list.php>`_.
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
14
14
  memory error with a 32-bit package even if you just process medium
15
15
  size data.
16
16
 
17
- .. include:: server-use.inc
18
-
19
17
  CentOS 5
20
18
  --------
21
19
 
@@ -25,6 +23,8 @@ Install::
25
23
  % sudo yum makecache
26
24
  % sudo yum install -y groonga
27
25
 
26
+ .. include:: server-use.inc
27
+
28
28
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
29
29
  tokenizer, install groonga-tokenizer-mecab package.
30
30
 
@@ -32,17 +32,6 @@ Install groonga-tokenizer-mecab package::
32
32
 
33
33
  % sudo yum install -y groonga-tokenizer-mecab
34
34
 
35
- Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)
36
-
37
- Install IPA dictionary::
38
-
39
- % sudo yum install -y mecab-ipadic
40
-
41
- Or install Juman dictionary::
42
-
43
- % sudo yum install -y mecab-jumandic
44
-
45
-
46
35
  There is a package that provides `Munin
47
36
  <http://munin-monitoring.org/>`_ plugins. If you want to monitor
48
37
  Groonga status by Munin, install groonga-munin-plugins package.
@@ -91,6 +80,8 @@ Install::
91
80
  % sudo yum makecache
92
81
  % sudo yum install -y groonga
93
82
 
83
+ .. include:: server-use.inc
84
+
94
85
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
95
86
  tokenizer, install groonga-tokenizer-mecab package.
96
87
 
@@ -98,16 +89,6 @@ Install groonga-tokenizer-mecab package::
98
89
 
99
90
  % sudo yum install -y groonga-tokenizer-mecab
100
91
 
101
- Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)
102
-
103
- Install IPA dictionary::
104
-
105
- % sudo yum install -y mecab-ipadic
106
-
107
- Or install Juman dictionary::
108
-
109
- % sudo yum install -y mecab-jumandic
110
-
111
92
  There is a package that provides `Munin
112
93
  <http://munin-monitoring.org/>`_ plugins. If you want to monitor
113
94
  Groonga status by Munin, install groonga-munin-plugins package.
@@ -153,9 +134,9 @@ Install required packages to build Groonga::
153
134
 
154
135
  Download source::
155
136
 
156
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
157
- % tar xvzf groonga-4.0.2.tar.gz
158
- % cd groonga-4.0.2
137
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
138
+ % tar xvzf groonga-4.0.5.tar.gz
139
+ % cd groonga-4.0.5
159
140
 
160
141
  Configure (see :ref:`source-configure` about ``configure`` options)::
161
142
 
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
14
14
  memory error with a 32-bit package even if you just process medium
15
15
  size data.
16
16
 
17
- .. include:: server-use.inc
18
-
19
17
  wheezy
20
18
  ------
21
19
 
@@ -33,6 +31,8 @@ Install::
33
31
  % sudo apt-get update
34
32
  % sudo apt-get install -y -V groonga
35
33
 
34
+ .. include:: server-use.inc
35
+
36
36
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
37
37
  tokenizer, install groonga-tokenizer-mecab package.
38
38
 
@@ -73,6 +73,8 @@ Install::
73
73
  % sudo apt-get update
74
74
  % sudo apt-get install -y groonga
75
75
 
76
+ .. include:: server-use.inc
77
+
76
78
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
77
79
  tokenizer, install groonga-tokenizer-mecab package.
78
80
 
@@ -113,6 +115,8 @@ Install::
113
115
  % sudo apt-get update
114
116
  % sudo apt-get install -y -V groonga
115
117
 
118
+ .. include:: server-use.inc
119
+
116
120
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
117
121
  tokenizer, install groonga-tokenizer-mecab package.
118
122
 
@@ -145,9 +149,9 @@ Install required packages to build Groonga::
145
149
 
146
150
  Download source::
147
151
 
148
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
149
- % tar xvzf groonga-4.0.2.tar.gz
150
- % cd groonga-4.0.2
152
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
153
+ % tar xvzf groonga-4.0.5.tar.gz
154
+ % cd groonga-4.0.5
151
155
 
152
156
  Configure (see :ref:`source-configure` about ``configure`` options)::
153
157
 
@@ -10,13 +10,12 @@ Fedora. You can install them by ``yum``.
10
10
 
11
11
  .. note::
12
12
 
13
- Since Groonga 3.0.2 release, Groonga related RPM pakcages are in the official
14
- Fedora yum repository (Fedora 18). So you can use them instead of the groonga yum
15
- repository now. There is some exceptions to use the groonga yum
16
- repository because ``groonga-normalizer-mysql`` and mecab dictionaries
17
- (mecab-ipadic or mecab-jumandic) are provided by
18
- the groonga yum repository. But we will also plan to release
19
- ``groonga-normalizer-mysql`` in the official Fedora yum repository in the future.
13
+ Since Groonga 3.0.2 release, Groonga related RPM pakcages are in the
14
+ official Fedora yum repository (Fedora 18). So you can use them
15
+ instead of the Groonga yum repository now. There is some exceptions
16
+ to use the Groonga yum repository because mecab dictionaries
17
+ (mecab-ipadic or mecab-jumandic) are provided by the Groonga yum
18
+ repository.
20
19
 
21
20
  We distribute both 32-bit and 64-bit packages but we strongly
22
21
  recommend a 64-bit package for server. You should use a 32-bit package
@@ -24,8 +23,6 @@ just only for tests or development. You will encounter an out of
24
23
  memory error with a 32-bit package even if you just process medium
25
24
  size data.
26
25
 
27
- .. include:: server-use.inc
28
-
29
26
  Fedora 20
30
27
  ---------
31
28
 
@@ -33,13 +30,14 @@ Install::
33
30
 
34
31
  % sudo yum install -y groonga
35
32
 
36
- Note that additional packages such as ``groonga-normalizer-mysql``,
37
- ``mecab-dic`` and ``mecab-jumandic`` packages require to install
38
- ``groonga-release`` package which provides the groonga yum repository beforehand::
33
+ Note that additional packages such as ``mecab-dic`` and ``mecab-jumandic`` packages require to install
34
+ ``groonga-release`` package which provides the Groonga yum repository beforehand::
39
35
 
40
36
  % sudo rpm -ivh http://packages.groonga.org/fedora/groonga-release-1.1.0-1.noarch.rpm
41
37
  % sudo yum update
42
38
 
39
+ .. include:: server-use.inc
40
+
43
41
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
44
42
  tokenizer, install groonga-tokenizer-mecab package.
45
43
 
@@ -82,9 +80,9 @@ Install required packages to build Groonga::
82
80
 
83
81
  Download source::
84
82
 
85
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
86
- % tar xvzf groonga-4.0.2.tar.gz
87
- % cd groonga-4.0.2
83
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
84
+ % tar xvzf groonga-4.0.5.tar.gz
85
+ % cd groonga-4.0.5
88
86
 
89
87
  Configure (see :ref:`source-configure` about ``configure`` options)::
90
88
 
@@ -39,9 +39,9 @@ Install `Xcode <https://developer.apple.com/xcode/>`_.
39
39
 
40
40
  Download source::
41
41
 
42
- % curl -O http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
43
- % tar xvzf groonga-4.0.2.tar.gz
44
- % cd groonga-4.0.2
42
+ % curl -O http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
43
+ % tar xvzf groonga-4.0.5.tar.gz
44
+ % cd groonga-4.0.5
45
45
 
46
46
  Configure (see :ref:`source-configure` about ``configure`` options)::
47
47
 
@@ -74,9 +74,9 @@ Build from source
74
74
  Groonga uses GNU build system. So the following is the simplest build
75
75
  steps::
76
76
 
77
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
78
- % tar xvzf groonga-4.0.2.tar.gz
79
- % cd groonga-4.0.2
77
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
78
+ % tar xvzf groonga-4.0.5.tar.gz
79
+ % cd groonga-4.0.5
80
80
  % ./configure
81
81
  % make
82
82
  % sudo make install
@@ -134,7 +134,7 @@ command line option. So this option is not critical build option. It's
134
134
  just for convenient.
135
135
 
136
136
  The default is ``/usr/local/var/log/groonga.log``. The
137
- ``/usr/local/var`` part is changed by ``--localestatedir`` option.
137
+ ``/usr/local/var`` part is changed by ``--localstatedir`` option.
138
138
 
139
139
  Here is an example that log file is placed into shared NFS directory
140
140
  ``/nfs/log/groonga.log``::
@@ -17,9 +17,9 @@ Install required packages to build Groonga::
17
17
 
18
18
  Download source::
19
19
 
20
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
21
- % gtar xvzf groonga-4.0.2.tar.gz
22
- % cd groonga-4.0.2
20
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
21
+ % gtar xvzf groonga-4.0.5.tar.gz
22
+ % cd groonga-4.0.5
23
23
 
24
24
  Configure with ``CFLAGS="-m64" CXXFLAGS="-m64"`` variables. They are
25
25
  needed for building 64-bit version. To build 32-bit version, just
@@ -14,8 +14,6 @@ just only for tests or development. You will encounter an out of
14
14
  memory error with a 32-bit package even if you just process medium
15
15
  size data.
16
16
 
17
- .. include:: server-use.inc
18
-
19
17
  PPA (Personal Package Archive)
20
18
  ------------------------------
21
19
 
@@ -42,6 +40,8 @@ Install::
42
40
 
43
41
  % sudo apt-get -y install groonga
44
42
 
43
+ .. include:: server-use.inc
44
+
45
45
  If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
46
46
  tokenizer, install groonga-tokenizer-mecab package.
47
47
 
@@ -74,9 +74,9 @@ Install required packages to build Groonga::
74
74
 
75
75
  Download source::
76
76
 
77
- % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
78
- % tar xvzf groonga-4.0.2.tar.gz
79
- % cd groonga-4.0.2
77
+ % wget http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz
78
+ % tar xvzf groonga-4.0.5.tar.gz
79
+ % cd groonga-4.0.5
80
80
 
81
81
  Configure (see :ref:`source-configure` about ``configure`` options)::
82
82
 
@@ -21,14 +21,14 @@ Installer
21
21
  For 32-bit environment, download x86 executable binary from
22
22
  packages.groonga.org:
23
23
 
24
- * http://packages.groonga.org/windows/groonga/groonga-4.0.2-x86.exe
24
+ * http://packages.groonga.org/windows/groonga/groonga-4.0.5-x86.exe
25
25
 
26
26
  Then run it.
27
27
 
28
28
  For 64-bit environment, download x64 executable binary from
29
29
  packages.goronga.org:
30
30
 
31
- * http://packages.groonga.org/windows/groonga/groonga-4.0.2-x64.exe
31
+ * http://packages.groonga.org/windows/groonga/groonga-4.0.5-x64.exe
32
32
 
33
33
  Then run it.
34
34
 
@@ -41,14 +41,14 @@ zip
41
41
  For 32-bit environment, download x86 zip archive from
42
42
  packages.groonga.org:
43
43
 
44
- * http://packages.groonga.org/windows/groonga/groonga-4.0.2-x86.zip
44
+ * http://packages.groonga.org/windows/groonga/groonga-4.0.5-x86.zip
45
45
 
46
46
  Then extract it.
47
47
 
48
48
  For 64-bit environment, download x64 zip archive from
49
49
  packages.groonga.org:
50
50
 
51
- * http://packages.groonga.org/windows/groonga/groonga-4.0.2-x64.zip
51
+ * http://packages.groonga.org/windows/groonga/groonga-4.0.5-x64.zip
52
52
 
53
53
  Then extract it.
54
54
 
@@ -66,27 +66,27 @@ Windows. Here are required tools:
66
66
 
67
67
  Download zipped source from packages.groonga.org:
68
68
 
69
- * http://packages.groonga.org/source/groonga/groonga-4.0.2.zip
69
+ * http://packages.groonga.org/source/groonga/groonga-4.0.5.zip
70
70
 
71
71
  Then extract it.
72
72
 
73
73
  Move to the Groonga's source folder::
74
74
 
75
- > cd c:\Users\%USERNAME%\Downloads\groonga-4.0.2
75
+ > cd c:\Users\%USERNAME%\Downloads\groonga-4.0.5
76
76
 
77
77
  Configure by ``cmake``. The following commnad line is for 64-bit
78
78
  version. To build 32-bit version, use ``-G "Visual Studio 10"``
79
79
  parameter instead::
80
80
 
81
- groonga-4.0.2> cmake . -G "Visual Studio 10 Win64" -DCMAKE_INSTALL_PREFIX=C:\groonga
81
+ groonga-4.0.5> cmake . -G "Visual Studio 10 Win64" -DCMAKE_INSTALL_PREFIX=C:\groonga
82
82
 
83
83
  Build::
84
84
 
85
- groonga-4.0.2> cmake --build . --config Release
85
+ groonga-4.0.5> cmake --build . --config Release
86
86
 
87
87
  Install::
88
88
 
89
- groonga-4.0.2> cmake --build . --config Release --target Install
89
+ groonga-4.0.5> cmake --build . --config Release --target Install
90
90
 
91
91
  After the above steps, :doc:`/reference/executables/groonga` is found in
92
92
  ``c:\groonga\bin\groonga.exe``.
@@ -1,10 +1,155 @@
1
1
  .. -*- rst -*-
2
2
 
3
+ :orphan:
4
+
3
5
  .. highlightlang:: none
4
6
 
5
7
  News
6
8
  ====
7
9
 
10
+ .. _release-4-0-5:
11
+
12
+ Release 4.0.5 - 2014/08/29
13
+ --------------------------
14
+
15
+ Improvements
16
+ ^^^^^^^^^^^^
17
+
18
+ * Dropped Ubuntu 13.10 (Saucy Salamander).
19
+ * Supported to show weight vector element as XML.
20
+ * [ :doc:`/reference/functions/between` ] Supported outside of key range.
21
+ * [mruby] Changed to use Onigmo as regexp implementation.
22
+ * Added :doc:`/reference/functions/highlight_full` and
23
+ :doc:`/reference/functions/highlight_html` which tags
24
+ output text. [GitHub#185] [Patch by Naoya Murakami]
25
+ * [doc] Updated outdated functions/commands reference
26
+ [GitHub#188] [GitHub#189] [Patch by Naoya Murakami]
27
+ * [benchmark] Added average and median in benchmark result.
28
+ * Exported :c:func:`grn_selector_func` and :c:func:`grn_proc_set_selector`
29
+ for plugin developer. [GitHub#190] [Patch by Naoya Murakami]
30
+ * [ :doc:`/reference/commands/tokenize` ] Added "mode" option to control behavior.
31
+ You can use ``GET`` or ``ADD`` as a mode.
32
+ [GitHub#191] [GitHub#192] [Patch by Naoya Murakami]
33
+ * Supported near search by '\*N"A Z"' syntax.
34
+ * Supported to customize behavior of tokenizer whether it skips token or
35
+ skips token with position. This feature is useful for developing tokenizer plugin.
36
+ [GitHub#193] [Patch by Naoya Murakami]
37
+ * [doc] Updated description that a bug report is accepted in Japanese on GitHub issue tracker.
38
+ [Reported by 6elz] [groonga-dev,02651]
39
+ * [doc] Updated tutorial in English. [GitHub#194] [Patch by cosmo0920]
40
+
41
+ Fixes
42
+ ^^^^^
43
+
44
+ * [php] Fixed memory leak when :c:func:`grn_ctx_recv()` is used.
45
+ [GitHub#184] [Patch by @do-aki]
46
+ * [php] Fixed to avoid double free when :c:func:`grn_ctx_close()` is called.
47
+ [GitHub#184] [Patch by @do-aki]
48
+ * Fixed to support out-of-tree build again.
49
+ * [httpd] Updated bundled nginx version to the latest mainline (1.7.4). This update contains vulnerability fix.
50
+ * Fixed a bug that infinite loop occurs sometimes when updating indexes.
51
+ [groonga-dev,02673] [Reported by MINAGAWA Sho]
52
+ * Fixed a bug that document frequency is invalid when
53
+ :ref:`offline-index-construction` is used.
54
+ [groonga-dev,02691] [Reported by Naoya Murakami]
55
+
56
+ Thanks
57
+ ^^^^^^
58
+
59
+ * @do-aki
60
+ * Naoya Murakami
61
+ * 6elz
62
+ * MINAGAWA Sho
63
+ * cosmo0920
64
+
65
+ .. _release-4-0-4:
66
+
67
+ Release 4.0.4 - 2014/07/29
68
+ --------------------------
69
+
70
+ Improvements
71
+ ^^^^^^^^^^^^
72
+
73
+ * [httpd] Updated bundled nginx version to the latest mainline (1.7.3).
74
+ * Supported weight in vector column.
75
+ * [ :doc:`/reference/executables/groonga-benchmark` ] Added missing description about HTTP.
76
+ * [ :doc:`/tutorial` ] Updated English tutorial documentation.
77
+ * [example] Supported Ruby 1.9 or later for edict2grn.rb.
78
+ * [http][admin] Updated to use English as default language. [GitHub#182]
79
+
80
+ Fixes
81
+ ^^^^^
82
+
83
+ * Fixed to show right syntax error location in response.
84
+ * [httpd] Fixed build error on Clang. [GitHub clear-code/rurema-search#11] [Reported by niku]
85
+
86
+ Thanks
87
+ ^^^^^^
88
+
89
+ * niku
90
+
91
+ .. _release-4-0-3:
92
+
93
+
94
+ Release 4.0.3 - 2014/06/29
95
+ --------------------------
96
+
97
+ Improvements
98
+ ^^^^^^^^^^^^
99
+
100
+ * [experimental][ :doc:`/reference/executables/groonga-server-http` ]
101
+ Supported POST.
102
+ * [windows] Bundled libwinpthread-1.dll. Because newer
103
+ libgcc_s_sjlj-1.dll depends on libwinpthread-1.dll.
104
+ [groonga-dev,02398] [Reported by Masafumi Yokoyama]
105
+ * [ :doc:`/reference/executables/groonga` ] Changed the default port number of
106
+ GQTP to 10043. Because server packages use 10043 by default.
107
+ [GitHub#172] [Patch by Naoya Murakami]
108
+ * [ :doc:`/reference/commands/normalize` ] Added more validations for invalid
109
+ argument.
110
+ [groonga-dev,02409][GitHub:#174]
111
+ [Reported by GMO Media, Inc.][Patch by Naoya Murakami]
112
+ * [ :doc:`/reference/commands/tokenize` ] Added more validations for invalid
113
+ argument.
114
+ * [ :doc:`/reference/executables/groonga-server-http` ] Supported ``Expect:
115
+ 100-Continue`` request.
116
+ * Exported ``grn_proc_get_type()``.
117
+ * [ :doc:`/reference/executables/groonga-suggest-learner` ]
118
+ Added ``--log-path`` and ``--log-level`` options.
119
+ * Deprecated ``GRN_CTX_USE_QL``.
120
+ * Deprecated ``GRN_CTX_BATCH_MODE``.
121
+ * Added ``grn_text_printf()``.
122
+ * Added ``grn_text_vprintf()``.
123
+ * Removed limitation of one query log size.
124
+ * Added :c:func:`grn_plugin_expr_var_init()`.
125
+ [GitHub#175][Patch by Naoya Murakami]
126
+ * Added :c:func:`grn_plugin_command_create()`.
127
+ [GitHub#175][Patch by Naoya Murakami]
128
+ * [GitHub#176] Supported reference vector column with weight.
129
+ * [plugin] Used public API instead of internal API.
130
+ [GitHub#177][GitHub#178] [Patch by Naoya Murakami]
131
+ * [doc][plugin] Added plugin APIs.
132
+ [GitHub#179] [Patch by Naoya Murakami]
133
+ * [windows] Re-supported Visual C++ 2010.
134
+ [groonga-dev,02454] [Reported by cosmo0920].
135
+
136
+ Fixes
137
+ ^^^^^
138
+
139
+ * [rpm][groonga-server-gqtp] Fixed a bug that HTTP protocol is used
140
+ not GQTP.
141
+ [GitHub#173] [Patch by Naoya Murakami]
142
+ * [ :doc:`/reference/commands/select` ] Fixed a crash bug when
143
+ :ref:`select-adjuster` has a syntax error.
144
+
145
+ Thanks
146
+ ^^^^^^
147
+
148
+ * Masafumi Yokoyama
149
+ * Naoya Murakami
150
+ * GMO Media, Inc.
151
+ * cosmo0920
152
+
8
153
  .. _release-4-0-2:
9
154
 
10
155
 
@@ -24,7 +169,7 @@ Improvements
24
169
  * Supported Ubuntu 14.04 (Trusty Tahr).
25
170
  * Dropped Ubuntu 12.10.
26
171
  * Migrated Ubuntu package distribution site to PPA on Launchpad.
27
- See :doc:`/install/Ubuntu` for details.
172
+ See :doc:`/install/ubuntu` for details.
28
173
  * Handled all requests that start with ``/d/`` as API requests. You
29
174
  need to put files to directories that don't start with ``/d/`` to
30
175
  serve by Groonga HTTP service.
@@ -158,1205 +303,15 @@ Thanks
158
303
  * Naoya Murakami
159
304
  * Ryoji Yamamoto
160
305
 
161
- .. _release-3-1-2:
162
-
163
- Release 3.1.2 - 2014/01/29
164
- --------------------------
165
-
166
- Improvements
167
- ^^^^^^^^^^^^
168
-
169
- * [doc] Updated to caplitalized "Groonga" terms in documentation. [Patch by cosmo0920] [GitHub#136, #137, #138, #139, #140, #141, #142, #143, #144, #145, #146, #147, #148, #149, #150, #151]
170
- * Supported to customize the value of lock timeout. See :doc:`/reference/api/global_configurations` about details.
171
- [groonga-dev,02017] [Suggested by yoku]
172
- * [doc] Added description about the value of lock timeout.
173
- * Enabled ``GRN_JA_SKIP_SAME_VALUE_PUT`` by default. In the previous releases, the value of
174
- this configuration is 'no'. This change affects reducing the size of Groonga database.
175
- * Supported multiple indexes including a nested index and multiple keywords query.
176
- This change improves missing search results isssue when narrowing down by multiple keywords query.
177
- * Added API to customize normalizer for snippet.
178
-
179
- Fixes
180
- ^^^^^
181
-
182
- * Fixed not to use index for empty query. This change enables you to search even though empty query.
183
- Note that this means that there is performance penalty if many empty records exist.
184
- [groonga-dev,02052] [Reported by Naoya Murakami]
185
- * Fixed the behaviour about return value of "X || Y" and "X && Y" for adjusting to ECMAScript.
186
- In "X || Y" case, if either X or Y satisfy the condition, it returns X itself or Y itself instead of 1 or 0.
187
- * In "X && Y" case, if X and Y satisfy the condition, it returns X itself instead of 1.
188
- if X doesn't satisfy the condition, it returns false instead of 0.
189
- * Fixed to return null when no snippet is found. This change enables you to set the default value
190
- of :doc:`/reference/functions/snippet_html`. In such a purpose, use "snippet_html(XXX) || 'default value'".
191
-
192
- Thanks
193
- ^^^^^^
194
-
195
- * cosmo0920
196
- * yoku
197
- * Naoya Murakami
198
-
199
- .. _release-3-1-1:
200
-
201
- Release 3.1.1 - 2013/12/29
202
- --------------------------
203
-
204
- Improvements
205
- ^^^^^^^^^^^^
206
-
207
- * [deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
208
- [Suggested by Hideki Yamane]
209
- * [deb] Dropped Debian 6.0 (squeeze) support.
210
- * [deb] Dropped Ubuntu 10.04 (lucid) support.
211
- * Supported :doc:`/reference/functions/geo_in_rectangle` in the whole world.
212
- * Supported error report when failed to casting invalid value of geo point type.
213
- * Exported some macros which is used for accessing pseudo column names.
214
- [groonga-dev,1999] [Suggested by whombx]
215
- * [doc] Refined drilldown documentation. [Reported by @Yahppo]
216
- * Supported :doc:`/reference/functions/between` function which is used for
217
- filtering the column value in specific range.
218
- * [doc] Updated Travis CI environment information. [Patch by cosmo0920]
219
- * [rpm][fedora] Dropped Fedora 19.
220
- * [rpm][fedora] Supported Fedora 20.
221
- * [doc] Updated "Groonga" notation. [Patch by cosmo0920] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]
222
-
223
- Fixes
224
- ^^^^^
225
-
226
- * [munin] Fixed the wrong port number which is specified for GQTP.
227
- * [geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
228
- the 3rd argument of :doc:`/reference/functions/geo_in_circle`, Groonga crashes.
229
-
230
- Thanks
231
- ^^^^^^
232
-
233
- * Hideki Yamane
234
- * whombx
235
- * @Yappo
236
- * cosmo0920
237
-
238
- .. _release-3-1-0:
239
-
240
- Release 3.1.0 - 2013/11/29
241
- --------------------------
242
-
243
- Improvements
244
- ^^^^^^^^^^^^
245
-
246
- * [experimental] Supported an option to skip updating for the same value.
247
- It is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable.
248
- * Improved to show tokenizer and original text in empty token warning message.
249
- It shows actual token, so it helps you to investigate token related issue.
250
- * Dropped broken AIO support. [#2054] [Reported by sho MINAGAWA]
251
- * [windows] Supported build with Visual Studio Express 2008. [#1964 the 21th comment]
252
- It is aimed to promote bundling Mroonga with MariaDB in the future.
253
-
254
- Fixes
255
- ^^^^^
256
-
257
- * Fixed a bug that type of "_value" column is treated as Int32.
258
- It causes the case that the value of "_value" column is casted unexpectedly.
259
- [Reported by Genki Takiuchi]
260
- * Fixed to require GLib 2.14.0 or later for benchmark program.
261
- The benchmark program is changed to use GRegex which requires GLib 2.14.0 or later.
262
- It affects users who compile Groonga with '--enable-benchmark' configuration.
263
- [groonga-dev,01890] [Reported by WING]
264
- * Fixed a memory leak on updating an empty column vector with the same value.
265
- * Fixed a memory leak on updating index for column vector.
266
- It affects the case if you store the value of column which has invalid UTF-8 byte
267
- sequence.
268
- * [plugin][windows] Fixed the issue that register command fails without
269
- 'lib/groonga/plugins'. [Reported by @yito]
270
-
271
- Thanks
272
- ^^^^^^
273
-
274
- * sho MINAGAWA
275
- * Genki Takiuchi
276
- * WING
277
- * @yito
278
-
279
- .. _release-3-0-9:
280
-
281
- Release 3.0.9 - 2013/10/29
282
- --------------------------
283
-
284
- Improvements
285
- ^^^^^^^^^^^^
286
-
287
- * [doc][httpd] Added documentation about :ref:`groonga-database-auto-create` directive.
288
- * [httpd] Added :ref:`groonga-cache-limit` directive.
289
- * [doc] Added description why zlib/lzo compression are disabled by default. [groonga-dev, 01845] [Suggested by Naoya Murakami]
290
- * Remove a restriction related to RLIMIT_NOFILE on HTTP server.
291
- It enables HTTP server process to handle over 4096 files.
292
- * [experimental] Added some API to integrate mruby into groonga. [GitHub#109, #110, #111, #112, #113, #114, #115, #116, #117, #118] [Patch by wanabe]
293
- * [travis] Supported CMake build on Travis-CI.
294
- * [doc] Added documentation about :doc:`reference/tuning`.
295
- * [experimental] Added :doc:`ruby_load` command.
296
- * [httpd] Supported multiple buffered body of POST request.
297
- The load command caused timeout in such a case. [GitHub #120] [Patch by Motoi Washida]
298
- * [gqtp] Supported error message. The body is changed to return
299
- raw text insted of double quoted text. This is incompatible changes.
300
- * [http] Supported "400 Bad request" for invalid argument error.
301
- * [doc] Added examples for :doc:`/suggest/completion`
302
- * Supported Ubuntu 13.10 (Saucy Salamander).
303
-
304
- Fixes
305
- ^^^^^
306
-
307
- * Fixed a bug that it cause SEGV by arithmetic overflow.
308
- This problem occurs when the size of indexes exceeds
309
- the size of virtual memory. [groonga-dev,01661]
310
- [Reported by Naoya Murakami]
311
- * Fixed needless lock for creating table.
312
- This change fixes a performance regression instroduced at Groonga 3.0.5.
313
- * Fixed a bug that database which has reference column can't be removed.
314
- It affects the case that indexed tables/columns and referenced tables
315
- are removed at first, then remove operation to index columns and
316
- reference columns fails. [Reported by Eito Katagiri] [GitHub Rroonga #13]
317
- * Fixed a bug that removing database which uses DAT key may remain garbage.
318
- * [http] Fixed a small memory leak which is caused by shared HTTP header buffer in the same worker thread.
319
- * [httpd] Fixed a bug that :ref:`groonga-database-auto-create` parameter
320
- isn't inherited. It means that these parameters are just ignored in non location blocks.
321
- * Fixed a bug that status command may returns invalid cache hit rate.
322
- * Fix a bug that casting to Time may causes overflow issue.
323
- It affects the case that assignment of the Time value which indicate over 32bit value.
324
-
325
- Thanks
326
- ^^^^^^
327
-
328
- * Naoya Murakami
329
- * wanabe
330
- * Motoi Washida
331
- * Eito Katagiri
332
-
333
- .. _release-3-0-8:
334
-
335
- Release 3.0.8 - 2013/09/29
336
- --------------------------
337
-
338
- Improvements
339
- ^^^^^^^^^^^^
340
-
341
- * [admin] Improved error handling of select functionality. This change shows error message
342
- and hides loading dialog. [Patch by orangain]
343
- * [admin] Improved to submit search form with the enter key. [Patch by orangain]
344
- * [admin] Improved to show placeholder in search form.
345
- This change shows usage examples. [Patch by orangain]
346
- * [httpd] Supported :ref:`groonga-query-log-path` directive
347
- * [doc] Updated :doc:`/reference/commands/select` documentation about the number of
348
- hits in select response.
349
- * Improved to ignore an empty token which is generated by continuous spaces from tokenizer.
350
- [groonga-dev,01729] [Suggested by Naoya Murakami]
351
- * [token delimit] Improved to treat continuous spaces as a space.
352
- The tokenizer regards 2 or more spaces are valid input.
353
- * [doc] Added note about indexes for each column vs indexes for multiple column.
354
- * [doc] Added language annotation to source label. [groonga-dev,01751] [Suggested by Kazuhiro Isobe]
355
- * Supported :ref:`cascade-delete` to referenced records. In previous version,
356
- You got an error for the operation.
357
- * [doc] Updated documentation location in README. [groonga-dev,01800] [Reported by Kazuhiro Isobe]
358
- * [experimental] Added :doc:`/reference/commands/ruby_eval` command.
359
- * [doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] [Reported by Kazuhiro Isobe]
360
-
361
- Fixes
362
- ^^^^^
363
-
364
- * [admin] Fixed a bug that add value button of COLUMN_VECTOR does not work.
365
-
366
- Thanks
367
- ^^^^^^
368
-
369
- * orangain
370
- * Naoya Murakami
371
- * Kazuhiro Isobe
372
-
373
- .. _release-3-0-7:
374
-
375
- Release 3.0.7 - 2013/08/29
376
- --------------------------
377
-
378
- Improvements
379
- ^^^^^^^^^^^^
380
-
381
- * [doc] Added API documentation. [groonga-dev,01593]
382
- [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]
383
- [Patch by whombx]
384
- * [table_remove] Improved not to remove patricia trie table or hash table
385
- which is still referenced. This change avoids that referenced table is removed accidentally.
386
- * Improved to just ignore too long token (4096 bytes or more).
387
- This change affects when it is registered. In the previous version, it is treated as an
388
- error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]
389
- * Improved to show actual discarded posting term in log message.
390
- [groonga-dev,01621] [Reported by Naoya Murakami]
391
- * [httpd] Supported loading data using POST method. [GitHub#101]
392
- [Patch by Motoi Washida]
393
- * [httpd] Supported groonga log as ``groonga_log_path`` directive.
394
- * [httpd] Supported groonga log level as ``groonga_log_level`` directive.
395
- * [httpd] Supported customizing cache limit as ``groonga_cache_limit`` directive.
396
-
397
- Fixes
398
- ^^^^^
399
-
400
- * Fixed a bug that error in expression may cause stack overflow.
401
- This change avoids that groonga crashes suddenly as a result of error accumlation.
402
- * Fixed a crash bug that offline index construction for vector column which has
403
- orphan reference causes.
404
- * Fixed a bug that groonga doesn't exit on error while daemon mode starts.
405
- For example, ``groonga -d /tmp/non-existence.db`` reproduce this bug.
406
- * [dump] Fixed a bug that wrong table type is dumped.
407
- This bug occurs when table type is TABLE_PAT_KEY and key is reference type.
408
- * Fixed a bug that the default ``--cache-limit`` value is 0.
409
- The default value is changed to '100'.
410
- * Fixed a memory leak when :doc:`/reference/functions/sub_filter` is used.
411
- * [doc] Fixed description of defrag command. [Reported by @naoina]
412
- * [doc] Fixed description about the way to contribute. [GitHub#77]
413
- [Patch by Masafumi Yokoyama]
414
- * [plugin] Fixed a crash bug on multiple DB open case.
415
- This bug affects the case that multiple plugin is used and the same database is opened from
416
- multiple process. [groonga-dev,01596] [Reported by Naoya Murakami]
417
- * Fixed a bug that nested match operation after ``AND`` operator doesn't work.
418
- The ``select ... --filter '... && nested.column @ "keyword"'`` query reproduces this bug.
419
- [groonga-dev,01599] [Reported by Motoi Washida]
420
- * [doc] Fixed a typo about documentation of special characters.
421
- [Reported by Genki Takiuchi]
422
- * Fixed a typo in error message when invalid character is given.
423
- [Reported by YOSHIDA Mitsuo]
424
-
425
- Thanks
426
- ^^^^^^
427
-
428
- * whombx
429
- * @naoina
430
- * Masafumi Yokoyama
431
- * Motoi Washida
432
- * Genki Takiuchi
433
- * YOSHIDA Mitsuo
434
-
435
- .. _release-3-0-6:
436
-
437
- Release 3.0.6 - 2013/07/29
438
- --------------------------
439
-
440
- Improvements
441
- ^^^^^^^^^^^^
442
-
443
- * [doc] Added documentation about parameter of :doc:`/reference/functions/sub_filter`
444
- function.
445
- * [suggest] Supported 0MQ 3.x. [GitHub#63] [Reported by Naoya Inada]
446
- * Added availability check for NetBSD about ``pthread_{mutex,cond}attr_setpshared()``
447
- [Reported by OBATA Akio]
448
- * Supported backslash escape in query syntax. [groonga-dev,01520]
449
- [Reported by Kouhei Tanabe]
450
- * [rpm][fedora] Supported Fedora 19.
451
- * [rpm][fedora] Dropped Fedora 18 support.
452
- * [httpd] Updated bundled nginx version to 1.4.2.
453
-
454
- Fixes
455
- ^^^^^
456
-
457
- * Fixed a crash bug when specific internal function (``grn_obj_path()``) is called
458
- for built-in proc function such as ``select``. [Reported by Genki Takiuchi]
459
-
460
- Thanks
461
- ^^^^^^
462
-
463
- * Naoya Inada
464
- * OBATA Akio
465
- * Kouhei Tanabe
466
- * Genki Takiuchi
467
-
468
- .. _release-3-0-5:
469
-
470
- Release 3.0.5 - 2013/06/29
471
- --------------------------
472
-
473
- Improvements
474
- ^^^^^^^^^^^^
475
-
476
- * [doc] Added summary about ``match_columns`` and ``query_string`` parameters in ``query()``.
477
- * Added subrecord information to table inspection.
478
- * Supported single quoted string literal in ``output_columns`` expression.
479
- This means that "XXX, '...'" expression is supported.
480
- * [doc] Added notification about root privileges and well known port
481
- when starting groonga server. [Reported by Kosuke Asami]
482
- * [experimental] Added :doc:`/reference/functions/html_untag` function.
483
-
484
- Fixes
485
- ^^^^^
486
-
487
- * Fixed a crash bug of mroonga which is caused by missing lock for table creation.
488
- [Reported by Y.Kentaro]
489
- * Fixed a lot of compilation warnings by clang and gcc.
490
- * Fixed a bug that ``sub_filter(...)`` is ignored if you use "XXX && sub_filter(...)"
491
- expression.
492
- * Fixed a bug that wrong tag name is used in XML output.
493
- This bug affects the case if you use "REFERENCE_VECTOR_COLUMN._key" expression
494
- for ``output_columns``. Reference column isn't contained in XML ouput.
495
- * [doc] Fixed wrong arguments in ``sub_filter()`` documentation.
496
- * [deb] Fixed a bug that status action returns wrong exit code
497
- when services are stopped. [GitHub#62] [Patch by @orangain]
498
- * Fixed a bug that the value of arithmetic operation is broken.
499
- This bug affects the case if you assign calculated value to
500
- ``_score`` pseudo column for example.
501
-
502
- Thanks
503
- ^^^^^^
504
-
505
- * Y.Kentaro
506
- * Kosuke Asami
507
- * @orangain
508
-
509
- .. _release-3-0-4:
510
-
511
- Release 3.0.4 - 2013/05/29
512
- --------------------------
513
-
514
- Improvements
515
- ^^^^^^^^^^^^
516
-
517
- * [tokenizer] Improved to show log message when normalized string is not given.
518
- * Supported ``_key`` as an argument of ``geo_in_circle``. [Reported by @ceekz]
519
- * Supported to cast vector elements when groonga is used as a library.
520
- * Dropped Ubuntu 11.10 (Oneiric Ocelot) support.
521
- * Supported multiple index section in ``match_columns``.
522
- * Supported ``tokenize`` command.
523
- * Supported to show system error message when ``mmap()`` is failed.
524
- * [doc][windows] Simplified build procedures by "cmake --build".
525
- * Improved to restrict max execution time to prevent hanging service script.
526
- [GitHub#61] [Reported by firewood]
527
- * Supported to evaluate vector as boolean.
528
- By this change, empty vector is evaluated as true.
529
- * Improved not to log too many needless log messages.
530
- Too many log messages are truncated as "(N same messages are truncated)".
531
- * [munin][groonga_n_records] Added ``exclude_tables`` option.
532
- It supports to exclude specific tables from monitoring results.
533
- * Supported Debian 8.0 (jessie).
534
- * Improved database portability by eliminating directory path of
535
- system plugins.
536
-
537
- Fixes
538
- ^^^^^
539
-
540
- * [tokenizer] Fixed a memory leak on error.
541
- * Fixed a bug that empty string for similar search causes SEGV.
542
- [groonga-dev,01346] [Reported by Nakai Kanako]
543
- * Fixed a memory leak when "VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx"
544
- expressions are used.
545
- * Fixed a bug that SIGSTOP and SIGCONT stops groonga server.
546
- * Fixed a crash bug when normalizer returns NULL as normalized string.
547
- [Reported by Y.Kentaro]
548
- * Fixed a bug that daemonize process doesn't work on OS X.
549
- [groonga-dev,01440] [Reported by Masahiro KONISHI]
550
- * [deb] Fixed a bug that HTTP/GQTP process is excuted as root user.
551
-
552
- Thanks
553
- ^^^^^^
554
-
555
- * @ceekz
556
- * Nakai Kanako
557
- * firewood
558
- * Y.Kentaro
559
- * Masahiro KONISHI
560
- * @orangain
561
-
562
- .. _release-3-0-3:
563
-
564
- Release 3.0.3 - 2013/04/29
565
- --------------------------
566
-
567
- Improvements
568
- ^^^^^^^^^^^^
569
-
570
- * [suggest] Supported to learn with the value of customized weight
571
- by using ``configuration.weight`` configuration.
572
- * Improved performance of geo-location search. For example,
573
- ``geo_in_rectangle`` is executed about 10% faster than ever.
574
- * [rpm][centos] Added ``additional_configure_options`` parameter
575
- for building customized groonga without changing spec file.
576
- * Supported KyTea 0.4.5.
577
- * Supported vector index access by "vector[N]" syntax.
578
- * Added ``--default-tokenizer`` option to :doc:`/reference/executables/groonga-suggest-create-dataset` command.
579
- * Added ``--help`` option to :doc:`/reference/executables/groonga-suggest-create-dataset` command.
580
- * Supported Ubuntu 13.04 Raring Ringtail.
581
-
582
- .. _release-3-0-2:
583
-
584
- Release 3.0.2 - 2013/03/29
585
- --------------------------
586
-
587
- Improvements
588
- ^^^^^^^^^^^^
589
-
590
- * Supported two or more indexes for a table key.
591
- This change affects to eliminate potential crash case when loading a new key
592
- to two or more indexed key.
593
- * Supported binary operations such as ``X + Y``, ``X - Y``, ``X * Y``, ``X / Y``,
594
- ``X % Y``, ``X >> Y``, ``X << Y``, ``X | Y``, ``X ^ Y``, ``X & Y`` and ``X >>> Y``
595
- for Int8, UInt8, Int16, UInt16 and UInt64.
596
- * Added english documentation for ``load`` command.
597
- * Supported binary assign operations such as ``X += Y``, ``X -= Y``, ``X *= Y``,
598
- ``X /= Y``, ``X %= Y``, ``X <<= Y``, ``X >>= Y``, ``X >>>= Y``, ``X &= Y``,
599
- ``X |= Y`` and ``X ^= Y`` for Int8, UInt8, Int16, UInt16 and UInt64.
600
- * Supported unary operations such as ``-X`` for Int8, UInt8, Int16, UInt16 and UInt64.
601
- * Supported complex string concatination in ``--output_columns``.
602
- For example, you can use a query such as ``--output_columns '"<" + title + ">"'``.
603
- * Added the information of the repository of groonga to development page.
604
- * Added ``sub_filter()`` function.
605
- * Supported query expander in ``query()`` function.
606
- This change supports the query such as
607
- ``query("MATCH_COLUMNS", "QUERY", "QueryExpanderTSV")``.
608
- * Renamed ``--query_expansion`` to ``--query_expander``.
609
- ``--query_expansion`` is regarded as deprecated.
610
-
611
- Fixes
612
- ^^^^^
613
-
614
- * Fixed a bug that ``snippet_html(XXX), XXX`` fails with "stack error".
615
- This bug affects a query such as ``--output_columns 'snippet_html(title), content'``.
616
- [Groonga-talk (no subject)] [Reported by Hendro Wibowo]
617
- * Fixed a typo about install documentation. [Reported by hino]
618
- * Fixed a bug that Travis-CI setup script fails.
619
- [groonga-dev,01248] [Reported by ongaeshi]
620
- * Fixed a memory leak.
621
- This bug affects the case which satisfy following three conditions.
622
- Column is a reference column, Column is a vector column and
623
- Reference key size is 25 byte or lager.
624
- * Fixed a crash bug by ``--output_columns _score.GARBAGE``.
625
- This affects the case if GARBAGE does not exist.
626
-
627
- Thanks
628
- ^^^^^^
629
-
630
- * Hendro Wibowo
631
- * hino
632
- * ongaeshi
633
-
634
- .. _release-3-0-1:
635
-
636
- Release 3.0.1 - 2013/02/28
637
- --------------------------
638
-
639
- Improvements
640
- ^^^^^^^^^^^^
641
-
642
- * Supported to set Bool to reference column when loading dataset by load command.
643
- * Supported AND operation for nested index.
644
- In this change, the expression "COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3" works.
645
- Note that the order is important for this expression.
646
- "1 <= COLUMN1.COLUMN2" is not supported yet. It is regarded as "COLUMN1.COLUMN2 <= 1".
647
- * Supported sorting not indexed entries.
648
- This change affects the case such as ``--sortby geo_distance(...)`` drops not indexed
649
- entries.
650
- * Supported range search for reference column by index.
651
- This change enable you to search range by index which is TABLE_PAT_KEY or TABLE_DAT_KEY
652
- based nested index of _key.
653
- * [rpm][centos] Supported MeCab 0.995.
654
- * [doc] Added missing documentation of commands such as ``column_rename`` or ``truncate``.
655
-
656
- Fixes
657
- ^^^^^
658
-
659
- * Fixed a bug that ``grn_index_cursor_next()`` returns NULL unexpectedly.
660
- It causes that invalid index entry is returned after deleting entries.
661
- This bug affects mroonga in storage mode. [groonga-dev,01192] [Reported by b senboku]
662
- * Fixed a crash bug that ``geo_distance()`` sort by index.
663
- This bug occurs by wrong the number of found records.
664
- * [httpd] Enabled default owner/group of database setting as groonga/groonga.
665
-
666
- Thanks
667
- ^^^^^^
668
-
669
- * b senboku
670
-
671
-
672
- .. _release-3-0-0:
673
-
674
- Release 3.0.0 - 2013/02/09
675
- --------------------------
676
-
677
- * Bump version to 3.0.0!
678
-
679
- Fixes
680
- ^^^^^
681
-
682
- * [deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary
683
- when ``groonga-tokenizer-mecab`` package is installed.
684
- * Fixed a bug that int64 literal is truncated to uint32 value.
685
- If you use string literal for int64, this bug does not affects.
686
- * [rpm][centos] Fixed a bug that stopping ``groonga-server-http`` service
687
- by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]
688
-
689
- Thanks
690
- ^^^^^^
691
-
692
- * IWAI, Masaharu
693
-
694
- .. _release-2-1-2:
695
-
696
- Release 2.1.2 - 2013/01/29
697
- --------------------------
698
-
699
- Improvements
700
- ^^^^^^^^^^^^
701
-
702
- * Supported multiple ``query()`` in a select command.
703
- For example, you can specify the keyword which has different weight such as
704
- 'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'
705
- for ``--filter``.
706
- * Dropped experimental view feature.
707
- * Added ``grn_logger_reopen`` API for custom logger.
708
- Note that ``grn_logger_info`` API is deprecated, use ``grn_logger`` API instead.
709
- * Added ``grn_default_logger_set_path()`` and ``grn_default_logger_get_path()`` API.
710
- Note that global ``grn_log_path`` variable was removed. Use above API.
711
- * Added ``grn_default_query_logger_set_path()`` and
712
- ``grn_default_query_logger_get_path()`` API.
713
- Note that global ``grn_qlog_path`` variable was removed. Use above API.
714
- * Added translated documentation about :doc:`/reference/tables` and :doc:`/reference/normalizers`.
715
- * [deb][rpm] Improved to install with missing dictionary when
716
- ``groonga-tokenizer-mecab`` package is installed.
717
- * Supported :ref:`nested-index-search` with range search.
718
- For example, you can specify 'column1.column2...columnN <= "1988-01-04 00:00:00"'
719
- in ``--filter``.
720
- * [rpm][fedora] Supported Fedora 18.
721
- * [rpm][fedora] Dropped Fedora 17 support.
722
- * [doc] Added documentation for :doc:`/server/package`.
723
- * [doc] Added documentation for :doc:`/reference/functions/query`.
724
-
725
- Fixes
726
- ^^^^^
727
-
728
- * Fixed not to report an error even though MeCab tokenizer shared object
729
- isn't found. [groonga-dev,01174] [Reported by wing]
730
- * [httpd] Fixed not to fail configure on CentOS 5.4 by setting
731
- ``SED`` variable explicitly.
732
- * Fixed a crash bug that not initialized vector column value is accessed
733
- by select command.
734
-
735
- Thanks
736
- ^^^^^^
737
-
738
- * wing
739
-
740
- .. _release-2-1-1:
741
-
742
- Release 2.1.1 - 2012/12/29
743
- --------------------------
744
-
745
- This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
746
- instead.
747
-
748
- Fixes
749
- ^^^^^
750
-
751
- * Fixed a bug that ``KEY_NORMALIZE`` information in database that is
752
- created by groonga 2.0.8 or ealier is dropped.
753
-
754
- .. _release-2-1-0:
755
-
756
- Release 2.1.0 - 2012/12/29
757
- --------------------------
758
-
759
- .. Caution::
760
-
761
- Use 2.1.1 instead of 2.1.0. 2.1.0 has a serious bug related
762
- ``KEY_NORMALIZE``.
763
-
764
- .. Caution::
765
-
766
- This release has backward incompatible changes against ``table_list`` and
767
- ``column_list`` commands. If you use own program which depends on the output
768
- results above commands, you need to support null instead of "null" string.
769
-
770
- This release has supported ``--normalizer`` option, but there is
771
- side effect for this feature. If you open old version of groonga
772
- database at least once, you can not open its database by old
773
- version of groonga.
774
-
775
- There is also another backward incompatible change agaist plugin API for
776
- tokenizer. The argument of ``grn_tokenizer_query_open`` API has changed.
777
- This API change affects developer of tokenizer plugin.
778
-
779
- Improvements
780
- ^^^^^^^^^^^^
781
-
782
- * [doc] Added documentation about :ref:`nested-index-search`.
783
- * Supported the expression as :doc:`/reference/functions/snippet_html` arguments.
784
- This change enables you to use ``snippet_html("STRING" + "STRING")`` for example.
785
- You can specify column name or literal for "STRING". [Reported by Tomoatsu Shimada]
786
- * Supported to create own normalizer as a plugin.
787
- * Moved ``groonga-query-log-analyzer`` as
788
- `groonga-query-log <http://rubygems.org/gems/groonga-query-log>`_ RubyGems.
789
- It enables you to analyze query logs without installing groonga package.
790
- * Supported ``--normalizer`` option for :doc:`/reference/commands/table_create` command.
791
- This change enables you to specify normalizer plugin.
792
- * Changed "null" string to null value as meaning for "No Object".
793
- This is backward incompatible change and affects output results of introspection
794
- related commands such as ``table_list`` and ``column_list``.
795
- * Added a flag which controls behavior about normalizer as the last argument
796
- of ``grn_tokenizer_query_open`` API.
797
- * Supported continuous line in :ref:`command-list-with-continuous-line` list.
798
- * Improved to support not only no key table, but also hash table, patricia trie
799
- and double array trie for :ref:`nested-index-search`.
800
-
801
- Fixes
802
- ^^^^^
803
-
804
- * [windows] Added missing ``O_BINARY`` flag to open file correctly.
805
- This change fixes the infinite loop problem about groonga HTTP server.
806
- [GitHub#47] [Patch by Shimomura Tatsuya]
807
- * Fixed a bug that ``--default-match-escalation-threshold`` doesn't accept
808
- negative value to disable functionality.
809
- This fix enable you to disable search escalation.
810
- see :option:`--default-match-escalation-threshold` about details.
811
- * Fixed a bug that ``_score`` after "*" is ignored in ``--output_columns``.
812
-
813
- Thanks
814
- ^^^^^^
815
-
816
- * Tomoatsu Shimada
817
- * Shimomura Tatsuya
818
-
819
- .. _release-2-0-9:
820
-
821
- Release 2.0.9 - 2012/11/29
822
- --------------------------
823
-
824
- Improvements
825
- ^^^^^^^^^^^^
826
-
827
- * Supported to calculate the value of distance accross border
828
- in ``geo_distance`` with ``rectangle`` as approximate type. [#1534]
829
- * [doc] Added the :doc:`/spec/gqtp` specification.
830
- * Improved to ignore non critical ``getaddrinfo()`` error which groonga command emits on startup.
831
- This change does not affects nomal use of groonga because it just checked whether default hostname
832
- is resolved in previous version.
833
- * [experimental] Added ``snippet_html()`` function which extract keyword and surrounding text.
834
- See :doc:`/reference/functions/snippet_html` about details.
835
- * Supported to report error reason when error occured during reading table record.
836
- * Supported to search with keyword by nested index notation ( concatinate multiple
837
- indexed column name with dot character ) if there is a relationship between
838
- multiple table with index.
839
- * Supported to log "[tokenizer][mecab]" tag when using ``TokenMecab`` tokenizer.
840
- * Supported to log "[tokenizer][kytea]" tag when using ``TokenKyTea`` tokenizer.
841
- * Improved to use separated array for command error location as output results.
842
- This change is incompatibility change, but does not affects existing program.
843
- * Added documentation for :doc:`/reference/command/output_format`.
844
- * Added documentation for :doc:`/reference/command/return_code` of output results.
845
- * Supported range search by using index.
846
-
847
- Fixes
848
- ^^^^^
849
-
850
- * Fixed to use network byte order for status code of :ref:`gqtp-header-spec` to follow
851
- the normal network protocol convention.
852
- This change affects that groonga <= 2.0.8 client which connects to groonga server 2.0.9
853
- or later can not show status code properly when command failed.
854
- * Fixed a bug that UTF-8 normalization computes wrong offset which affects to return value
855
- of ``snippet_html()``. This change not to insert tag of snippet into invalid location.
856
- [#1531] [Reported by Tomoatsu Shimada]
857
- * [windows] Fixed over allocated memory access which cause segmentation fault
858
- on startup by groonga command. [#1532] [Patch by Akio Tajima]
859
- * [windows] Fixed a bug that data stored in column couldn't be read when total amount of data
860
- stored in column exceeds 128MB. [groonga-dev,01088] [Reported by ongaeshi]
861
- * Fixed a bug that searching with indexed column for ``Int*`` and ``UInt*``
862
- except ``Int32/Uint32`` returns invalid results.
863
- * Fixed a bug that deleting record can be found.
864
- * Fixed a bug that latin1 and koi8r normalizations could not process all string data
865
- if given string contains NULL character on the way.
866
- * Fixed to return the correct default value of type when no data stored in column is
867
- referenced by ``select`` command.
868
- * Fixed to exclude the value of vector column metadata in :ref:`offline-index-construction`.
869
- This change not to contain such a metadata as search results.
870
-
871
- Thanks
872
- ^^^^^^
873
-
874
- * Tomoatsu Shimada
875
- * Akio Tajima
876
- * ongaeshi
877
-
878
-
879
- .. _release-2-0-8:
880
-
881
- Release 2.0.8 - 2012/10/29
882
- --------------------------
883
-
884
- Improvements
885
- ^^^^^^^^^^^^
886
-
887
- * [rpm] Improved the description of server-http and httpd packages.
888
- [Suggested by Daiki Ueno]
889
- * Supported custom query expansion by plugin.
890
- * [experimental] Added query expander ``QueryExpanderTSV`` plugin.
891
- * Supported Ubuntu 12.10 Quantal Quetzal
892
- * [experimental] Supported function call in ``output_columns``.
893
- * [doc][rpm] Add missing description about installing MeCab dictionary.
894
- [Reported by serihiro]
895
-
896
- Fixes
897
- ^^^^^
898
-
899
- * [rpm] Fixed to remove needless "Requires" from spec file.
900
- [Reported by Daiki Ueno]
901
- * [rpm] Fixed inaccurate description about license of groonga-server-gqtp.
902
- * [admin] Fixed record edit button shows wrong record. [GitHub#34]
903
- [Reported by firewood]
904
- * [deb] Fixed to remove needless dependency to pcre.
905
- * [deb] Fixed to bundle missing table plugin.
906
-
907
- Thanks
908
- ^^^^^^
909
-
910
- * Daiki Ueno
911
- * firewood
912
- * serihiro
913
-
914
- .. _release-2-0-7:
915
-
916
- Release 2.0.7 - 2012/09/29
917
- --------------------------
918
-
919
- Improvements
920
- ^^^^^^^^^^^^
921
-
922
- * [doc] Added more descriptions about ``--query_flags``.
923
- * [doc][httpd] Added sample configuration for gzip compression.
924
- * [httpd][rpm][centos] Added groonga-httpd init script.
925
- * [rpm] Added logrotate config files.
926
- * Supported creating database during install process.
927
- * [httpd] Supported ``groonga_database_auto_create`` directive.
928
- * Supported score respected merge by set operation. [GitHub#31]
929
- * [httpd] Supported ``load`` command by POST.
930
- * Added error check for creating temporary result set. [GitHub#33]
931
- * Added GQTP server package.
932
- * Added ``max()`` function.
933
- * Added ``min()`` function.
934
-
935
- Fixes
936
- ^^^^^
937
-
938
- * Fixed to set domain to vector elements to ``load`` command. [GitHub#30]
939
- * [httpd] Fixed missing NULL initialization. [Reported by @Kiske]
940
- * [httpd] Fixed missing size about ``content_type_len``.
941
- * [rpm][fedora] Fixed to use ``--bind-address`` in ``groonga.service``.
942
- * Fixed crash by invalid argument filter. [GitHub#32]
943
- * Fixed a bug that Time -> Time cast breaks value.
944
- * Fixed a bug that Time -> Float cast breaks value.
945
-
946
- Thanks
947
- ^^^^^^
948
-
949
- * @Kiske
950
-
951
- .. _release-2-0-6:
952
-
953
- Release 2.0.6 - 2012/08/29
954
- --------------------------
955
-
956
- Improvements
957
- ^^^^^^^^^^^^
958
-
959
- * [deb][rpm] Added ``groonga-server-common`` meta package. [#1451]
960
- * Supported ``--query_flags`` option to ``select`` command.
961
- * Supported PCRE auto detection for groonga-httpd.
962
- * [doc] Added information about Twitter and Facebook.
963
- * Improved to show error message from MeCab on ``mecab_new2()`` failure.
964
- * [doc] Added details about groonga for server use.
965
- * Improved to log details about ``vm.overcommit_memory``.
966
- * Supported custom selector definition.
967
- * Supported ``--working-directory`` option for groonga.
968
- * Supported ``dump`` command for groonga-httpd.
969
- * Improved to show not found target name for ``clearlock`` command.
970
- * Improved error messages about ``get`` command implemented by table plugin.
971
- * [rpm][centos] Supported MeCab 0.994. [#1455]
972
- [Suggested by IWAI, Masaharu]
973
- * Supported changing default logger's max level before ``grn_init()``.
974
- * Added ``all_records()`` function which copies all record IDs to the result table.
975
- * Supported '-WORD' in ``--query`` of the select command.
976
-
977
- Fixes
978
- ^^^^^
979
-
980
- * [doc] Fixed the execution examples. [#1428]
981
- [Reported by IWAI, Masaharu]
982
- * [deb] Fixed not to force groonga user/group by init script for groonga-httpd.
983
- * [rpm][fedora] Fixed missing stop parameter for groonga-httpd service.
984
- * Fixed a bug that the last 1 byte for cache key is ignored by ``select`` command.
985
- * Fixed detection of the number of arguments in the complex function call.
986
- * Fixed to suppress a warning by Clang.
987
- * Fixed backward incompatibility about missing ``add`` command related error
988
- by executing ``clearlock`` command.
989
- * [windows] Fixed database open failure which is related to binary data.
990
- [Reported by @yito]
991
-
992
- Thanks
993
- ^^^^^^
994
-
995
- * IWAI, Masaharu
996
- * @yito
997
-
998
-
999
- .. _release-2-0-5:
1000
-
1001
- Release 2.0.5 - 2012/07/29
1002
- --------------------------
1003
-
1004
- Improvements
1005
- ^^^^^^^^^^^^
1006
-
1007
- * Supported calculating the value of distance with "rect" or "rectangle"
1008
- argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]
1009
- * [doc] Added some literals description in script syntax.
1010
- * Supported other directory build for groonga-suggest and groonga-httpd.
1011
- * Supported ";" as a query parameter separator. [#1406]
1012
- [Suggested by IWAI, Masaharu]
1013
- * [doc] Added descriptions about script syntax.
1014
- * Supported near search by ``'column *N "word1 word2 ..."'`` in script syntax.
1015
- [#1423]
1016
- * [doc] Added a description about limitation of suffix search.
1017
- * Supported near search for ``_key`` pseudo column. [GitHub#19]
1018
- * [doc] Added basic ECMAScript related syntaxes.
1019
- * [doc] Updated a description about :doc:`/reference/functions/geo_distance`.
1020
- * [rpm][fedora] Supported Fedora 17.
1021
- * [rpm][fedora] Dropped Fedora 16 support.
1022
- * Supported logical not ``"!"`` operator. [GitHub#22]
1023
- * [httpd] Supported per location groonga database.
1024
- * Improved to return error messages while load command is processing.
1025
- * Improved to exit load command when an uncontinuable error occurred.
1026
- * Improved to stop load command for invalid --columns value.
1027
- * Supported to open locked database. [GitHub#21]
1028
-
1029
- Fixes
1030
- ^^^^^
1031
-
1032
- * Fixed a build problem about groonga-httpd on Mac OS X.
1033
- [Reported by SHIMADA Koji]
1034
- * Fixed not to use installed groonga's header files for groonga-httpd.
1035
- * Fixed a build problem about groonga on Mac OS X Lion.
1036
- * [doc] Fixed a description of :doc:`/reference/commands/table_remove` command.
1037
- * Fixed infinite loop problem for not implemented operator without index.
1038
- [GitHub#20]
1039
- * Fixed a wrong error code which causes memory leaks.
1040
- * Fixed a wrong error code which collapse ja columns.
1041
- * [admin] Fixed to escape error message.
1042
- * Fixed to ignore unloadable objects which causes database incompatible.
1043
- [#1429] [Reported by IWAI, Masaharu]
1044
-
1045
- Thanks
1046
- ^^^^^^
1047
-
1048
- * SHIMADA Koji
1049
- * IWAI, Masaharu
1050
-
1051
-
1052
- .. _release-2-0-4:
1053
-
1054
- Release 2.0.4 - 2012/06/29
1055
- --------------------------
1056
-
1057
- Improvements
1058
- ^^^^^^^^^^^^
1059
-
1060
- * Supported only KyTea 0.4.2.
1061
- * Dropped KyTea 0.4.1 or ealier support.
1062
- * [experimental] Supported nginx based groonga HTTP interface.
1063
- * Supported calculating the value of distance with "rect" or "rectangle"
1064
- argument in northern hemisphere. [#1386] [#1387] [#1388] [#1389]
1065
- * [doc] Added a document about :doc:`/development/travis-ci` integration.
1066
- * [doc] Added descriptions about full text search and phrase search.
1067
- See :ref:`full-text-search-condition` and :ref:`phrase-search-condition`
1068
- about detail.
1069
- * [doc] Added descriptions about comparison conditions.
1070
- See :ref:`conditional-expression` about detail.
1071
- * [doc] Added examples for :doc:`/reference/grn_expr/query_syntax`.
1072
- * [doc] Added descriptions about :ref:`combined-expression`.
1073
- * [doc] Added descriptions about :ref:`prefix-search-condition` and
1074
- :ref:`suffix-search-condition`.
1075
- * Supported suffix search by index.
1076
- * [doc] Added a document about :doc:`/reference/grn_expr`.
1077
- * [munin] Supported JSON library installed by RubyGems [GitHub#17]
1078
- [Patch by IWAI, Masaharu]
1079
- * [doc] Updated the description of how to specify a value as Time in tutorial.
1080
- [#1405] [Reported by IWAI, Masaharu]
1081
- * [rpm] Removed groonga-tokenizer-mecab dependency from groonga package.
1082
- [GitHub#18] [Patch by IWAI, Masaharu]
1083
-
1084
- Fixes
1085
- ^^^^^
1086
-
1087
- * Fixed a problem that display of command prompt changes to not intended state
1088
- by using batch mode on Mac OS X.
1089
- [Reported by @soundkitchen]
1090
- * Fixed not to terminate after an invalid command in client mode. [#1305]
1091
- * Fixed a problem that '=R' is treated as 'OR' in ``--query`` syntax. [#1393]
1092
-
1093
- Thanks
1094
- ^^^^^^
1095
-
1096
- * @soundkitchen
1097
- * IWAI, Masaharu
1098
-
1099
- .. _release-2-0-3:
1100
-
1101
- Release 2.0.3 - 2012/05/29
1102
- --------------------------
1103
-
1104
- Improvements
1105
- ^^^^^^^^^^^^
1106
-
1107
- * [doc] Added about release procedure.
1108
- * Removed restriction that the max number of opened files is 4096.
1109
- * [experimental] Added table plugin.
1110
- * [doc] Added more descriptions about :doc:`/reference/commands/select` command.
1111
- * [doc] Made execution example copy & paste friendly.
1112
- * [windows] Supported build with Visual Studio 2010 Express and
1113
- CMake. See :doc:`/install/windows` about details.
1114
- * [doc][solaris] Added a document about building on Solaris.
1115
- See :doc:`/install/solaris` about details.
1116
- * [doc][yum] Updated epel-release package version.
1117
- [Reported by IWAI, Masaharu]
1118
- * [doc][cenos6] Disabled Repoforge for Munin for CentOS 6.
1119
- [Reported by IWAI, Masaharu]
1120
- * Started distributing source archive in zip format.
1121
- * [munin] groonga_dist Munin plugin supported an object that has
1122
- separated files.
1123
- * Started using Travis CI.
1124
- * [yum] Changed RPM package name that provides yum repository from
1125
- groonga-repository to groonga-release to follow RPM package name
1126
- convension such as centos-release and fedora-release.
1127
-
1128
- Fixes
1129
- ^^^^^
1130
-
1131
- * [doc] Fixed a command to update yum repository.
1132
- [Suggested by IWAI, Masaharu]
1133
- * [deb] Fixed a bug that log_repoen command in logrotate uses wrong protocol.
1134
- * Fixed broken ERROR tag in XML response.
1135
- [#1363] [GitHub#13] [Patch by IWAI, Masaharu]
1136
- * Fixed a bug that grn_ctx isn't fully cleared by grn_ctx_fin().
1137
- * Fixed a bug that ``&!`` set operation doesn't work with grouped
1138
- expression. [#1372]
1139
- * Fixed a bug that a record key registered via index source isn't normalized.
1140
-
1141
- Thanks
1142
- ^^^^^^
1143
-
1144
- * IWAI, Masaharu
1145
-
1146
- .. _release-2-0-2:
1147
-
1148
- Release 2.0.2 - 2012/04/29
1149
- --------------------------
1150
-
1151
- .. caution::
1152
-
1153
- The package sign key is changed since this release. Import the new
1154
- package sign key before updating groogna packages.
1155
-
1156
- Debian/Ubuntu::
1157
-
1158
- % sudo apt-get update
1159
- % sudo apt-get -y --allow-unauthenticated install groonga-keyring
1160
-
1161
- CentOS/Fedora::
1162
-
1163
- % sudo yum makecache
1164
- % sudo yum install --nogpgcheck -y groonga-repository
1165
-
1166
- Improvements
1167
- ^^^^^^^^^^^^
1168
-
1169
- * [pkg-config] Removed needless MessagePack dependency.
1170
- * [rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]
1171
- * [rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]
1172
- * [groonga] Improved daemoinzed timing. Groonga server daemonizes
1173
- after socket is listened. It means that groonga server is ready when
1174
- groonga server is daemonized. [#1326]
1175
- * [admin] Supported suggest in groonga administration page.
1176
- * [dump] Ignored MeCab tokenizer load error.
1177
- * Supported CMake.
1178
- * [load] Supported error report when a column value can't be set.
1179
- * Supported similar search. ``select --filter "column *S 'TEXT'"``
1180
- is the similar search syntax. [#1342]
1181
- * [apt][yum] Changed package sign key.
1182
- * Supported Ubuntu Precise Pangolin.
1183
- * [apt] Added a new groonga-keyring deb package for the groonga's
1184
- package sign key.
1185
-
1186
- Fixes
1187
- ^^^^^
1188
-
1189
- * [deb][rpm] Used ``--bind-address`` option instead of deprecated
1190
- ``--address`` option.
1191
- [#1320] [Patch by IWAI, Masaharu]
1192
- * [deb] Renamed groonga-server package's configuration file to
1193
- /etc/default/groonga-server from /etc/default/groonga.
1194
- * [rpm][fedora] Fixed upgrade condition in %post server.
1195
- [GitHub#11] [Patch by Daiki Ueno]
1196
- * [rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]
1197
- * [deb][rpm] Added missing curl dependency.
1198
- [GitHub#12] [Patch by IWAI, Masaharu]
1199
- * [rpm] Removed needleess ruby package dependency from groonga package.
1200
- [#1330] [Suggested by IWAI, Masaharu]
1201
- * [deb] Added missing default values to groonga-server's
1202
- configuration file.
1203
- * Fixed a crash bug that is caused when searching with updaging very large
1204
- inverted index. [#1329]
1205
- * Fixed a bug that strings are compared as characters instead of byte string.
1206
- [#1340] [Reported by Shinya Kawaji]
1207
-
1208
- Thanks
1209
- ^^^^^^
1210
-
1211
- * IWAI, Masaharu
1212
- * Daiki Ueno
1213
- * Shinya Kawaji
1214
-
1215
- .. _release-2-0-1:
1216
-
1217
- Release 2.0.1 - 2012/03/29
1218
- --------------------------
1219
-
1220
- Improvements
1221
- ^^^^^^^^^^^^
1222
-
1223
- * Supported build in other directory.
1224
- [#1298] [Reported by Kazuhiko]
1225
- * [solaris] Supported build on Solaris 11. [Reported by Kazuhiko]
1226
- * [test] Supported functional test.
1227
- * [test] Required ``--with-ruby19`` configure option for testing by Ruby.
1228
- * [dump] Supported records dump for a table that has default tokenizer.
1229
- * [suggest] Added ``similar_search`` option.
1230
- * [groonga] Removed deprecated options, ``-a``, ``--address`` and
1231
- ``--admin-html-path``.
1232
- * Added more return value checks. [GitHub#9] [Reported by Markus Elfring]
1233
- * [dat] Supported term extract operation.
1234
- * Added `logos <http://groonga.org/logo/>`_ .
1235
- * Updated HTML design.
1236
- * Renamed ``grntest`` to ``groonga-benchmark``.
1237
- * Supported ``autogen.sh`` on CentOS 5.
1238
- * [linux] Added ``vm.overcommit_memory`` kernel parameter value
1239
- check. [#1289]
1240
- * ``grn_snip`` uses ``grn_obj`` mechanism. [#1054]
1241
-
1242
- Fixes
1243
- ^^^^^
1244
-
1245
- * Fixed a bug that uninstall task doesn't uninstall installed Ruby
1246
- scripts. [#1299] [Reported by Kazuhiko]
1247
- * Added a missing Gemfile. [#1302] [Reported by Kazuhiko]
1248
- * Fixed a bug that some indexed records aren't found. The feature is
1249
- only used by mroonga. [#1303]
1250
- * [groonga] Appended missing ``-id`` to ``--server-id`` option name.
1251
- * Fixed a bug that latin1 normalization may access unexpected memory.
1252
-
1253
- Thanks
1254
- ^^^^^^
1255
-
1256
- * Kazuhiko
1257
- * Markus Elfring
1258
-
1259
- .. _release-2-0-0:
1260
-
1261
- Release 2.0.0 - 2012/02/29
1262
- --------------------------
1263
-
1264
- Improvements
1265
- ^^^^^^^^^^^^
1266
-
1267
- * [dat] Added 0 length key check.
1268
- * [windows] Added missing GCC related DLLs. [groonga-dev,00686]
1269
- [Reported by Suzuki]
1270
- * [php] Supported PHP 5.4. [Patch by Daiki Ueno]
1271
- * Updated FSF address. [Suggested by Daiki Ueno]
1272
- * [fedora] Supported systemd. [Patch by Daiki Ueno]
1273
- * [rpm][debian] Changed the default protocol to HTTP from gqtp.
1274
- * [rpm][centos] Supported status command.
1275
- * Removed needless ``:`` from log message.
1276
- * Removed deprecated grn_query. [#1247]
1277
- * Reduced needless grn_ctx_at() calls on creating table.
1278
- * [pat] Supported cache.
1279
- * [tokenizer] Improved tokenizer API.
1280
- * Accepted ``@`` as a valid name character.
1281
- * [tokenizer] Added a tokenizer based on
1282
- `KyTea <http://www.phontron.com/kytea/>`_.
1283
- * Supported :doc:`offline index construction </reference/indexing>`.
1284
- * [tokenizer] Supported MeCab 0.993. [groonga-dev,00703]
1285
- [Reported by Masaharu YOSHIOKA]
1286
- * [windows] Supported MessagePack.
1287
-
1288
- Fixes
1289
- ^^^^^
1290
-
1291
- * [pat] Fixed a bug that the last node can't be found. [#1258]
1292
- * [doc] Fixed links in Japanese page. [Reported by @naoina]
1293
- * [doc] Fixed wrong the default value. [Reported by @naoina]
1294
- * Fixed a typo. [Reported by Kazuhiko]
1295
- * [http] Fixed a bug that ``load`` command error isn't cleared.
1296
- [Reported by @wareohji]
1297
-
1298
- Thanks
1299
- ^^^^^^
1300
-
1301
- * Suzuki
1302
- * Daiki Ueno
1303
- * @naoina
1304
- * Kazuhiko
1305
- * Masaharu YOSHIOKA
1306
- * @wareohji
1307
-
1308
- .. _release-1-3-0:
1309
-
1310
- Release 1.3.0 - 2012/01/29
1311
- --------------------------
1312
-
1313
- Improvements
1314
- ^^^^^^^^^^^^
1315
-
1316
- * Supported dynamic DB key table change by
1317
- GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.
1318
- * Added ``--with-default-db-key`` configure option that
1319
- specifies the default DB key table.
1320
- * Supported "" value for geo point data types. It's interpreted as "0x0".
1321
- * Added column name to cast error message.
1322
- * Inhibit file information for stdin on load error.
1323
- * Enabled write-strings warnings and suppress those
1324
- warnings. [Suggested by montywi]
1325
- * Marked MessagePack output format as supported. [#1215]
1326
- * Added ``const`` to ``void *`` of ``*_set_value()``.
1327
- * Enabled warning flags on C and C++.
1328
- * Supported ``--with-libevent`` without value configure option.
1329
- * ``grn_table_get()`` supported grn_db. [#1242]
1330
- * [rpm] Removed needless groogna-munin-plugins dependency
1331
- from groonga-server. [#1251] [Suggested by Masaharu IWAI]
1332
- * [rpm] Removed needless groogna-doc dependency
1333
- from groonga. [#1251] [Suggested by Masaharu IWAI]
1334
- * [dat] Supported repair by ``grn_dat_repair()``.
1335
- * ``grn_table_at()`` supported grn_db.
1336
- * [suggest] Removed unstable mark.
1337
- * [suggest][complete] Supported normalized value search in prefix-search.
1338
- * Added experimental offline index build. It's disabled by
1339
- default for now. You can enable it by
1340
- USE_OFFLINE_INDEXER=yes environment variable.
1341
- * Added internal API ``grn_obj_path_by_id()`` for mroonga.
1342
- * [suggest][httpd] Passed unknown parameters to groonga.
1343
- * [output][xml] Added a newline before ``</RESULT>`` for readability.
1344
- * [doc][output] Added documentation about output format type.
1345
- * Added ``table_rename``. [#1234]
1346
- * Added ``column_rename``. [#1234]
1347
-
1348
- Thanks
1349
- ^^^^^^
1350
-
1351
- * montywi
1352
- * Masaharu IWAI
1353
-
1354
306
  The old releases
1355
307
  ----------------
1356
308
 
1357
309
  .. toctree::
1358
310
  :maxdepth: 2
1359
311
 
312
+ news/3.x
313
+ news/2.x
314
+ news/1.3.x
1360
315
  news/1.2.x
1361
316
  news/1.1.x
1362
317
  news/1.0.x