rroonga 1.3.1-x86-mingw32 → 2.0.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. data/Gemfile +1 -1
  2. data/Rakefile +2 -7
  3. data/ext/groonga/rb-grn-column.c +34 -37
  4. data/ext/groonga/rb-grn-context.c +63 -2
  5. data/ext/groonga/rb-grn-expression.c +21 -13
  6. data/ext/groonga/rb-grn-object.c +2 -0
  7. data/ext/groonga/rb-grn-table.c +57 -51
  8. data/ext/groonga/rb-grn.h +10 -4
  9. data/lib/1.8/groonga.so +0 -0
  10. data/lib/1.9/groonga.so +0 -0
  11. data/lib/groonga/schema.rb +75 -46
  12. data/lib/groonga.rb +9 -6
  13. data/rroonga-build.rb +2 -2
  14. data/test/run-test.rb +1 -2
  15. data/test/test-table-select.rb +0 -5
  16. data/test/test-type.rb +2 -2
  17. data/test/test-version.rb +40 -10
  18. data/vendor/local/bin/grntest.exe +0 -0
  19. data/vendor/local/bin/groonga.exe +0 -0
  20. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  21. data/vendor/local/bin/libgroonga-0.dll +0 -0
  22. data/vendor/local/bin/libmecab-1.dll +0 -0
  23. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  24. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  25. data/vendor/local/bin/libstdc++-6.dll +0 -0
  26. data/vendor/local/bin/mecab.exe +0 -0
  27. data/vendor/local/include/groonga/groonga/plugin.h +113 -0
  28. data/vendor/local/include/groonga/groonga/tokenizer.h +146 -0
  29. data/vendor/local/include/groonga/groonga.h +18 -18
  30. data/vendor/local/include/msgpack/object.h +98 -0
  31. data/vendor/local/include/msgpack/object.hpp +412 -0
  32. data/vendor/local/include/msgpack/pack.h +143 -0
  33. data/vendor/local/include/msgpack/pack.hpp +318 -0
  34. data/vendor/local/include/msgpack/pack_define.h +26 -0
  35. data/vendor/local/include/msgpack/pack_template.h +766 -0
  36. data/vendor/local/include/msgpack/sbuffer.h +111 -0
  37. data/vendor/local/include/msgpack/sbuffer.hpp +112 -0
  38. data/vendor/local/include/msgpack/sysdep.h +195 -0
  39. data/vendor/local/include/msgpack/type/bool.hpp +55 -0
  40. data/vendor/local/include/msgpack/type/define.hpp +3279 -0
  41. data/vendor/local/include/msgpack/type/deque.hpp +77 -0
  42. data/vendor/local/include/msgpack/type/fixint.hpp +172 -0
  43. data/vendor/local/include/msgpack/type/float.hpp +82 -0
  44. data/vendor/local/include/msgpack/type/int.hpp +211 -0
  45. data/vendor/local/include/msgpack/type/list.hpp +77 -0
  46. data/vendor/local/include/msgpack/type/map.hpp +205 -0
  47. data/vendor/local/include/msgpack/type/nil.hpp +65 -0
  48. data/vendor/local/include/msgpack/type/pair.hpp +61 -0
  49. data/vendor/local/include/msgpack/type/raw.hpp +94 -0
  50. data/vendor/local/include/msgpack/type/set.hpp +122 -0
  51. data/vendor/local/include/msgpack/type/string.hpp +62 -0
  52. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +129 -0
  53. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +122 -0
  54. data/vendor/local/include/msgpack/type/tuple.hpp +13691 -0
  55. data/vendor/local/include/msgpack/type/vector.hpp +81 -0
  56. data/vendor/local/include/msgpack/type.hpp +16 -0
  57. data/vendor/local/include/msgpack/unpack.h +260 -0
  58. data/vendor/local/include/msgpack/unpack.hpp +374 -0
  59. data/vendor/local/include/msgpack/unpack_define.h +93 -0
  60. data/vendor/local/include/msgpack/unpack_template.h +409 -0
  61. data/vendor/local/include/msgpack/version.h +40 -0
  62. data/vendor/local/include/msgpack/vrefbuffer.h +142 -0
  63. data/vendor/local/include/msgpack/vrefbuffer.hpp +97 -0
  64. data/vendor/local/include/msgpack/zbuffer.h +207 -0
  65. data/vendor/local/include/msgpack/zbuffer.hpp +100 -0
  66. data/vendor/local/include/msgpack/zone.h +147 -0
  67. data/vendor/local/include/msgpack/zone.hpp +455 -0
  68. data/vendor/local/include/msgpack.h +30 -0
  69. data/vendor/local/include/msgpack.hpp +24 -0
  70. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  71. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  72. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  73. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  74. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  75. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  76. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  77. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  78. data/vendor/local/lib/libgroonga.a +0 -0
  79. data/vendor/local/lib/libgroonga.dll.a +0 -0
  80. data/vendor/local/lib/libgroonga.la +2 -2
  81. data/vendor/local/lib/libmecab.a +0 -0
  82. data/vendor/local/lib/libmecab.dll.a +0 -0
  83. data/vendor/local/lib/libmsgpack.a +0 -0
  84. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  85. data/vendor/local/lib/libmsgpack.la +41 -0
  86. data/vendor/local/lib/libmsgpackc.a +0 -0
  87. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  88. data/vendor/local/lib/libmsgpackc.la +41 -0
  89. data/vendor/local/lib/pkgconfig/groonga.pc +4 -4
  90. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  91. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  92. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  93. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  94. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  95. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  96. data/vendor/local/share/doc/groonga/en/html/_sources/commands/suggest.txt +1 -1
  97. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +6 -7
  98. data/vendor/local/share/doc/groonga/en/html/_sources/indexing.txt +108 -0
  99. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +386 -0
  100. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +51 -385
  101. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
  102. data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +4 -4
  103. data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
  104. data/vendor/local/share/doc/groonga/en/html/command_version.html +5 -5
  105. data/vendor/local/share/doc/groonga/en/html/commands/cache_limit.html +5 -5
  106. data/vendor/local/share/doc/groonga/en/html/commands/check.html +5 -5
  107. data/vendor/local/share/doc/groonga/en/html/commands/clearlock.html +5 -5
  108. data/vendor/local/share/doc/groonga/en/html/commands/column_create.html +5 -5
  109. data/vendor/local/share/doc/groonga/en/html/commands/column_list.html +5 -5
  110. data/vendor/local/share/doc/groonga/en/html/commands/column_remove.html +5 -5
  111. data/vendor/local/share/doc/groonga/en/html/commands/define_selector.html +5 -5
  112. data/vendor/local/share/doc/groonga/en/html/commands/defrag.html +5 -5
  113. data/vendor/local/share/doc/groonga/en/html/commands/delete.html +5 -5
  114. data/vendor/local/share/doc/groonga/en/html/commands/dump.html +5 -5
  115. data/vendor/local/share/doc/groonga/en/html/commands/load.html +5 -5
  116. data/vendor/local/share/doc/groonga/en/html/commands/log_level.html +5 -5
  117. data/vendor/local/share/doc/groonga/en/html/commands/log_put.html +5 -5
  118. data/vendor/local/share/doc/groonga/en/html/commands/log_reopen.html +5 -5
  119. data/vendor/local/share/doc/groonga/en/html/commands/quit.html +5 -5
  120. data/vendor/local/share/doc/groonga/en/html/commands/select.html +5 -5
  121. data/vendor/local/share/doc/groonga/en/html/commands/shutdown.html +5 -5
  122. data/vendor/local/share/doc/groonga/en/html/commands/status.html +5 -5
  123. data/vendor/local/share/doc/groonga/en/html/commands/suggest.html +7 -7
  124. data/vendor/local/share/doc/groonga/en/html/commands/table_create.html +5 -5
  125. data/vendor/local/share/doc/groonga/en/html/commands/table_list.html +5 -5
  126. data/vendor/local/share/doc/groonga/en/html/commands/table_remove.html +5 -5
  127. data/vendor/local/share/doc/groonga/en/html/commands/view_add.html +5 -5
  128. data/vendor/local/share/doc/groonga/en/html/commands.html +5 -5
  129. data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
  130. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
  131. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
  132. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
  133. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
  134. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
  135. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
  136. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
  137. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
  138. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +9 -9
  139. data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
  140. data/vendor/local/share/doc/groonga/en/html/executables/grnslap.html +5 -5
  141. data/vendor/local/share/doc/groonga/en/html/executables/grntest.html +5 -5
  142. data/vendor/local/share/doc/groonga/en/html/executables/groonga-http.html +5 -5
  143. data/vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html +5 -5
  144. data/vendor/local/share/doc/groonga/en/html/executables/groonga.html +5 -5
  145. data/vendor/local/share/doc/groonga/en/html/executables.html +5 -5
  146. data/vendor/local/share/doc/groonga/en/html/expr.html +5 -5
  147. data/vendor/local/share/doc/groonga/en/html/functions/edit_distance.html +5 -5
  148. data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +5 -5
  149. data/vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html +5 -5
  150. data/vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html +5 -5
  151. data/vendor/local/share/doc/groonga/en/html/functions/now.html +5 -5
  152. data/vendor/local/share/doc/groonga/en/html/functions/rand.html +10 -10
  153. data/vendor/local/share/doc/groonga/en/html/functions.html +5 -5
  154. data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
  155. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
  156. data/vendor/local/share/doc/groonga/en/html/index.html +14 -8
  157. data/vendor/local/share/doc/groonga/en/html/indexing.html +237 -0
  158. data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
  159. data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
  160. data/vendor/local/share/doc/groonga/en/html/log.html +20 -20
  161. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
  162. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
  163. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
  164. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +566 -0
  165. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  166. data/vendor/local/share/doc/groonga/en/html/news.html +65 -464
  167. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  168. data/vendor/local/share/doc/groonga/en/html/output.html +5 -5
  169. data/vendor/local/share/doc/groonga/en/html/pseudo_column.html +5 -5
  170. data/vendor/local/share/doc/groonga/en/html/reference.html +14 -8
  171. data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
  172. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  173. data/vendor/local/share/doc/groonga/en/html/spec/search.html +9 -9
  174. data/vendor/local/share/doc/groonga/en/html/spec.html +9 -9
  175. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
  176. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
  177. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
  178. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
  179. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  180. data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
  181. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  182. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
  183. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
  184. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
  185. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
  186. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
  187. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  188. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
  189. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
  190. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
  191. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
  192. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
  193. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
  194. data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
  195. data/vendor/local/share/doc/groonga/en/html/type.html +5 -5
  196. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  197. data/vendor/local/share/doc/groonga/ja/html/_sources/commands/suggest.txt +1 -1
  198. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +6 -7
  199. data/vendor/local/share/doc/groonga/ja/html/_sources/indexing.txt +108 -0
  200. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +386 -0
  201. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +51 -385
  202. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
  203. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +4 -4
  204. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
  205. data/vendor/local/share/doc/groonga/ja/html/command_version.html +5 -5
  206. data/vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html +5 -5
  207. data/vendor/local/share/doc/groonga/ja/html/commands/check.html +5 -5
  208. data/vendor/local/share/doc/groonga/ja/html/commands/clearlock.html +5 -5
  209. data/vendor/local/share/doc/groonga/ja/html/commands/column_create.html +5 -5
  210. data/vendor/local/share/doc/groonga/ja/html/commands/column_list.html +5 -5
  211. data/vendor/local/share/doc/groonga/ja/html/commands/column_remove.html +5 -5
  212. data/vendor/local/share/doc/groonga/ja/html/commands/define_selector.html +5 -5
  213. data/vendor/local/share/doc/groonga/ja/html/commands/defrag.html +5 -5
  214. data/vendor/local/share/doc/groonga/ja/html/commands/delete.html +5 -5
  215. data/vendor/local/share/doc/groonga/ja/html/commands/dump.html +5 -5
  216. data/vendor/local/share/doc/groonga/ja/html/commands/load.html +5 -5
  217. data/vendor/local/share/doc/groonga/ja/html/commands/log_level.html +5 -5
  218. data/vendor/local/share/doc/groonga/ja/html/commands/log_put.html +5 -5
  219. data/vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html +5 -5
  220. data/vendor/local/share/doc/groonga/ja/html/commands/quit.html +5 -5
  221. data/vendor/local/share/doc/groonga/ja/html/commands/select.html +5 -5
  222. data/vendor/local/share/doc/groonga/ja/html/commands/shutdown.html +5 -5
  223. data/vendor/local/share/doc/groonga/ja/html/commands/status.html +5 -5
  224. data/vendor/local/share/doc/groonga/ja/html/commands/suggest.html +5 -5
  225. data/vendor/local/share/doc/groonga/ja/html/commands/table_create.html +5 -5
  226. data/vendor/local/share/doc/groonga/ja/html/commands/table_list.html +5 -5
  227. data/vendor/local/share/doc/groonga/ja/html/commands/table_remove.html +5 -5
  228. data/vendor/local/share/doc/groonga/ja/html/commands/view_add.html +5 -5
  229. data/vendor/local/share/doc/groonga/ja/html/commands.html +5 -5
  230. data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
  231. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
  232. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
  233. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
  234. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
  235. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
  236. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
  237. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +5 -5
  238. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
  239. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  240. data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
  241. data/vendor/local/share/doc/groonga/ja/html/executables/grnslap.html +5 -5
  242. data/vendor/local/share/doc/groonga/ja/html/executables/grntest.html +5 -5
  243. data/vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html +5 -5
  244. data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +5 -5
  245. data/vendor/local/share/doc/groonga/ja/html/executables/groonga.html +5 -5
  246. data/vendor/local/share/doc/groonga/ja/html/executables.html +5 -5
  247. data/vendor/local/share/doc/groonga/ja/html/expr.html +5 -5
  248. data/vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html +5 -5
  249. data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +5 -5
  250. data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html +5 -5
  251. data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html +5 -5
  252. data/vendor/local/share/doc/groonga/ja/html/functions/now.html +5 -5
  253. data/vendor/local/share/doc/groonga/ja/html/functions/rand.html +10 -10
  254. data/vendor/local/share/doc/groonga/ja/html/functions.html +5 -5
  255. data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
  256. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
  257. data/vendor/local/share/doc/groonga/ja/html/index.html +14 -8
  258. data/vendor/local/share/doc/groonga/ja/html/indexing.html +215 -0
  259. data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
  260. data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
  261. data/vendor/local/share/doc/groonga/ja/html/log.html +20 -20
  262. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
  263. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
  264. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
  265. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +528 -0
  266. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  267. data/vendor/local/share/doc/groonga/ja/html/news.html +62 -425
  268. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  269. data/vendor/local/share/doc/groonga/ja/html/output.html +5 -5
  270. data/vendor/local/share/doc/groonga/ja/html/pseudo_column.html +5 -5
  271. data/vendor/local/share/doc/groonga/ja/html/reference.html +14 -8
  272. data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
  273. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  274. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +9 -9
  275. data/vendor/local/share/doc/groonga/ja/html/spec.html +9 -9
  276. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
  277. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
  278. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
  279. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
  280. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  281. data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
  282. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  283. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
  284. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
  285. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
  286. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
  287. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
  288. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  289. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
  290. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
  291. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
  292. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
  293. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
  294. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
  295. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
  296. data/vendor/local/share/doc/groonga/ja/html/type.html +5 -5
  297. data/vendor/local/share/doc/groonga/source/commands/suggest.txt +1 -1
  298. data/vendor/local/share/doc/groonga/source/contribution/report.txt +6 -7
  299. data/vendor/local/share/doc/groonga/source/indexing.txt +108 -0
  300. data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +386 -0
  301. data/vendor/local/share/doc/groonga/source/news.txt +51 -385
  302. data/vendor/local/share/doc/groonga/source/reference.txt +1 -0
  303. data/vendor/local/share/doc/groonga/source/spec/search.txt +4 -4
  304. data/vendor/local/share/license/groonga/COPYING +10 -12
  305. data/vendor/local/share/license/msgpack/AUTHORS +1 -0
  306. data/vendor/local/share/license/msgpack/COPYING +14 -0
  307. data/vendor/local/share/license/msgpack/LICENSE +202 -0
  308. data/vendor/local/share/man/ja/man1/groonga.1 +113 -5
  309. data/vendor/local/share/man/man1/groonga.1 +142 -11
  310. metadata +66 -3
  311. data/vendor/local/share/doc/groonga/source/update_execution_example.py +0 -141
@@ -0,0 +1,566 @@
1
+
2
+
3
+
4
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+
8
+ <html xmlns="http://www.w3.org/1999/xhtml">
9
+ <head>
10
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11
+
12
+ <title>Release 1.2.9 - 2011/12/29 &mdash; groonga v2.0.0 documentation</title>
13
+
14
+ <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
15
+ <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ var DOCUMENTATION_OPTIONS = {
19
+ URL_ROOT: '../',
20
+ VERSION: '2.0.0',
21
+ COLLAPSE_INDEX: false,
22
+ FILE_SUFFIX: '.html',
23
+ HAS_SOURCE: true
24
+ };
25
+ </script>
26
+ <script type="text/javascript" src="../_static/jquery.js"></script>
27
+ <script type="text/javascript" src="../_static/underscore.js"></script>
28
+ <script type="text/javascript" src="../_static/doctools.js"></script>
29
+ <link rel="shortcut icon" href="../_static/favicon.ico"/>
30
+ <link rel="top" title="groonga v2.0.0 documentation" href="../index.html" />
31
+ </head>
32
+ <body>
33
+ <div class="header">
34
+ <h1 class="title">
35
+ <a id="top-link" href="../index.html">
36
+ <span class="project">groonga</span>
37
+ <span class="separator">-</span>
38
+ <span class="description">An open-source fulltext search engine and column store.</span>
39
+ </a>
40
+ </h1>
41
+
42
+ <div class="other-language-links">
43
+ <ul>
44
+ <li><a href="../../../ja/html/news/1.2.x.html"><img src="../_static/jp.png" alt="日本語"></a></li>
45
+ </ul>
46
+ </div>
47
+ </div>
48
+
49
+
50
+ <div class="related">
51
+ <h3>Navigation</h3>
52
+ <ul>
53
+ <li class="right" style="margin-right: 10px">
54
+ <a href="../genindex.html" title="General Index"
55
+ accesskey="I">index</a></li>
56
+ <li><a href="../index.html">groonga v2.0.0 documentation</a> &raquo;</li>
57
+ </ul>
58
+ </div>
59
+
60
+ <div class="document">
61
+ <div class="documentwrapper">
62
+ <div class="bodywrapper">
63
+ <div class="body">
64
+
65
+ <div class="section" id="release-1-2-9-2011-12-29">
66
+ <span id="release-1-2-9"></span><h1>Release 1.2.9 - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="Permalink to this headline">¶</a></h1>
67
+ <div class="section" id="improvements">
68
+ <h2>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h2>
69
+ <ul class="simple">
70
+ <li>Supported Fedora 16.</li>
71
+ <li>Dropped Fedora 15 support.</li>
72
+ <li>[groonga] Improved the default server ID address to work
73
+ on unresolved host name environment. [Reported by &#64;uzulla]</li>
74
+ <li>Supported MAP_HUGETLB.</li>
75
+ <li>[admin] Supported throughput chart.</li>
76
+ <li>Stopped adding nul character in <tt class="docutils literal"><span class="pre">grn_itoh()</span></tt>. [#1194]
77
+ [Reported by SHIDARA Yoji]</li>
78
+ <li>Added <tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt>.</li>
79
+ <li>Added <tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt>.</li>
80
+ <li>Supported string vector column for query expansion. [#1216]</li>
81
+ <li>Added <tt class="docutils literal"><span class="pre">--filter</span></tt> option to <a class="reference internal" href="../commands/delete.html"><em>delete</em></a> to delete
82
+ many record at once. [#1225]</li>
83
+ <li>Supported approximate type customization for
84
+ <a class="reference internal" href="../functions/geo_in_circle.html"><em>geo_in_circle</em></a> and <a class="reference internal" href="../functions/geo_distance.html"><em>geo_distance</em></a>. [#1226]</li>
85
+ <li>Made <tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> and <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> are deprecated.</li>
86
+ <li>Changed to use <tt class="docutils literal"><span class="pre">null</span></tt> instead of <tt class="docutils literal"><span class="pre">&quot;&quot;</span></tt> for empty geo
87
+ point value in JSON output.</li>
88
+ <li>Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]</li>
89
+ <li>Added missing newlines after drilldown result tags in XML output.</li>
90
+ <li>Supported truncate for grn_dat.</li>
91
+ <li>Supported longest common prefix search by grn_dat.</li>
92
+ </ul>
93
+ </div>
94
+ <div class="section" id="fixes">
95
+ <h2>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h2>
96
+ <ul class="simple">
97
+ <li>[windows] Fixed inverted map type.</li>
98
+ <li>Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]</li>
99
+ <li>Fixed a problem that <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> reports wrongly
100
+ about MeCab. [#1209] [Patch by SHIDARA Yoji]</li>
101
+ <li>Added missing lock into <tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt>.</li>
102
+ <li>Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]</li>
103
+ <li>Fixed a problem that deleting SIS (Semi Infinite String)
104
+ may keep a garbage.</li>
105
+ </ul>
106
+ </div>
107
+ <div class="section" id="thanks">
108
+ <h2>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h2>
109
+ <ul class="simple">
110
+ <li>&#64;uzulla</li>
111
+ <li>Arnaud Fontaine</li>
112
+ <li>SHIDARA Yoji</li>
113
+ </ul>
114
+ </div>
115
+ </div>
116
+ <div class="section" id="release-1-2-8-2011-11-29">
117
+ <span id="release-1-2-8"></span><h1>Release 1.2.8 - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="Permalink to this headline">¶</a></h1>
118
+ <p>Object, table and column renamings are supported! These
119
+ features require database re-creation. You can re-create your
120
+ database by the following command:</p>
121
+ <div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump &gt; db.dump
122
+ % groonga -n YOUR_NEW_DB &lt; db.dump
123
+ </pre></div>
124
+ </div>
125
+ <div class="admonition note">
126
+ <p class="first admonition-title">Note</p>
127
+ <p class="last">Groonga 1.2.8 can open databases created by groonga 1.2.7
128
+ or earlier. But groonga 1.2.7 or earlier can't open
129
+ databases created by groonga 1.2.8 or later.</p>
130
+ </div>
131
+ <div class="section" id="id1">
132
+ <h2>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
133
+ <ul class="simple">
134
+ <li>[grntest] Removed the upper limit to the number of bytes in one line.</li>
135
+ <li>[grntest] Added <tt class="docutils literal"><span class="pre">--pid-path</span></tt> option.</li>
136
+ <li>[deb] Enabled experimental zlib and lzo support.</li>
137
+ <li>[rpm] Enabled experimental zlib and lzo support.</li>
138
+ <li>Supports truncation. [#892]</li>
139
+ <li>Enabled grn_dat that is a read lock free double array implementation.</li>
140
+ <li>[pkg-config] Added groonga_version variable to groonga.pc.</li>
141
+ <li>Re-supported <tt class="docutils literal"><span class="pre">--disable-static</span></tt>. [groonga-dev,00612]
142
+ [Suggested by Kenichi Aramaki]</li>
143
+ <li>[munin] Stopped to install Munin plugins by default.</li>
144
+ <li>Stopped to install RedHat platform related files by default.</li>
145
+ <li>Supports object renaming. This requires DB re-creation. [#1167]</li>
146
+ <li>[munin] Added a Munin plugin that measures throughput. [#1171]</li>
147
+ <li>[geo] Improved geo_in_rectangle performance. The new
148
+ implementation will be 2x faster than the old
149
+ implementation in many cases. [#1173]</li>
150
+ <li>[macports] Moved groonga's MacPorts to the official
151
+ repository. [Imported by Hiroshi Umemoto]</li>
152
+ <li>[geo] Changed the geo literal degree-to-msec conversion algorithm
153
+ to round-off from truncation.</li>
154
+ <li>Supports a table defrag. It defrags variable size value columns in
155
+ the table. [#1175]</li>
156
+ <li>Removed associated path on remove. [#1180]</li>
157
+ <li>[deb] Supports i386.</li>
158
+ <li>[rpm] Supports i386.</li>
159
+ <li>[windows] Supports x86.</li>
160
+ </ul>
161
+ </div>
162
+ <div class="section" id="id2">
163
+ <h2>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
164
+ <ul class="simple">
165
+ <li>Fixed a bug that groonga crashes when accessing a zlib/lzo compressed
166
+ column. Note that a compressed column access causes a memory leak. To
167
+ resolve this, we need to improve API. We will do it in the future.
168
+ [GtiHub#5][GtiHub#6] [Reported by Takayuki Yamaguchi]</li>
169
+ <li>Fixed a bug that unrelated column values are cleared in deletion.</li>
170
+ <li>Fixed a bug that a wrong index is used in sorting. [#766]
171
+ [Reported by Horikoshi Yuki]</li>
172
+ <li>[libedit] Fixed a bug that necessary initialization is
173
+ omitted. [GitHub#7] [Patch by SHIDARA Yoji]</li>
174
+ <li>[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]</li>
175
+ </ul>
176
+ </div>
177
+ <div class="section" id="id3">
178
+ <h2>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
179
+ <ul class="simple">
180
+ <li>Takayuki Yamaguchi</li>
181
+ <li>SHIDARA Yoji</li>
182
+ <li>Horikoshi Yuki</li>
183
+ <li>zunda</li>
184
+ <li>Hiroshi Umemoto</li>
185
+ </ul>
186
+ </div>
187
+ </div>
188
+ <div class="section" id="release-1-2-7-2011-10-29">
189
+ <span id="release-1-2-7"></span><h1>Release 1.2.7 - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="Permalink to this headline">¶</a></h1>
190
+ <div class="section" id="id4">
191
+ <h2>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
192
+ <ul class="simple">
193
+ <li>[libedit] Added error check for wide character to
194
+ multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
195
+ <li>Added grn_geo_estimate_in_rectangle().</li>
196
+ <li>Added cursor API to geo search in rectangle.</li>
197
+ <li>Improved geo search in rectangle speed.</li>
198
+ <li>Added packages for Ubuntu 11.10 Oneiric Ocelot</li>
199
+ <li>[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system gcc.)</li>
200
+ </ul>
201
+ </div>
202
+ <div class="section" id="id5">
203
+ <h2>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
204
+ <ul class="simple">
205
+ <li>Fixed a typo in document. [Reported by &#64;soundkitchen]</li>
206
+ </ul>
207
+ </div>
208
+ <div class="section" id="id6">
209
+ <h2>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
210
+ <ul class="simple">
211
+ <li>SHIDARA Yoji</li>
212
+ <li>&#64;soundkitchen</li>
213
+ </ul>
214
+ </div>
215
+ </div>
216
+ <div class="section" id="release-1-2-6-2011-09-29">
217
+ <span id="release-1-2-6"></span><h1>Release 1.2.6 - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="Permalink to this headline">¶</a></h1>
218
+ <div class="section" id="id7">
219
+ <h2>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
220
+ <ul class="simple">
221
+ <li>Improved error message on type cast.</li>
222
+ <li>Added geo point value validation on type cast.</li>
223
+ <li>Supported <a class="reference internal" href="../tutorial/query_expansion.html"><em>クエリ拡張</em></a>.</li>
224
+ <li>Added <cite>--query_expansion</cite> option to
225
+ <a class="reference internal" href="../commands/select.html"><em>select</em></a> for query expansion.</li>
226
+ <li>Added geometry conversion macro between degree and msec.</li>
227
+ <li>Supported type cast in <a class="reference internal" href="../functions/geo_distance.html"><em>geo_distance</em></a> ().</li>
228
+ <li>Don't split tokens with full width space in command line. #986</li>
229
+ <li>Supported conversion between TokyoGeoPoint and WGS84GeoPoint.</li>
230
+ <li>Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle().</li>
231
+ <li>Supported CentOS 6.</li>
232
+ <li>Supported the current Debian GNU/Linux sid.
233
+ Patch by SATOH Fumiyasu. GitHub#3</li>
234
+ </ul>
235
+ </div>
236
+ <div class="section" id="id8">
237
+ <h2>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
238
+ <ul class="simple">
239
+ <li>Fixed a bug that geo point is loaded as broken value.</li>
240
+ </ul>
241
+ </div>
242
+ <div class="section" id="id9">
243
+ <h2>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h2>
244
+ <ul class="simple">
245
+ <li>SATOH Fumiyasu</li>
246
+ </ul>
247
+ </div>
248
+ </div>
249
+ <div class="section" id="release-1-2-5-2011-08-29">
250
+ <span id="release-1-2-5"></span><h1>Release 1.2.5 - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="Permalink to this headline">¶</a></h1>
251
+ <div class="section" id="id10">
252
+ <h2>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
253
+ <ul class="simple">
254
+ <li>Added experimental Windows installer support.</li>
255
+ <li>Accepted &quot;#&quot; and &quot;-&quot; as a valid name characters. #1043</li>
256
+ <li>Accepted all valid characters except &quot;_&quot; as the first character. #1043</li>
257
+ <li>Supported <cite>--each</cite> for <cite>[...]</cite> form <a class="reference internal" href="../commands/load.html"><em>load</em></a>. #1044</li>
258
+ <li>Added documentation for <a class="reference internal" href="../suggest.html"><em>Suggest</em></a>.</li>
259
+ <li>Supported threshold as <cite>--frequency_threshold</cite> and
260
+ <cite>--conditional_probability_threshold</cite> options in all
261
+ <a class="reference internal" href="../commands/suggest.html"><em>suggest</em></a> types. #1042</li>
262
+ <li>[groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048</li>
263
+ <li>Supported string input for reference vector column value. #1051</li>
264
+ <li>[groonga-suggest-httpd] Added <cite>--n-lines-per-log-file</cite>
265
+ option that changes log line limitation for a file.</li>
266
+ <li>[groonga-suggest-httpd] Added <cite>p</cite> parameter for
267
+ <cite>--conditional_probability_threshold</cite>.</li>
268
+ <li>Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053</li>
269
+ <li>Exported grn_ctx_close(). #1035</li>
270
+ </ul>
271
+ </div>
272
+ <div class="section" id="id11">
273
+ <h2>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
274
+ <ul class="simple">
275
+ <li>Fixed a crash bug that invalid value is passed as match expression
276
+ argument in <a class="reference internal" href="../commands/select.html"><em>select</em></a>. #1047</li>
277
+ <li>Fixed a bug that hash table cursor returns garbage records.</li>
278
+ </ul>
279
+ </div>
280
+ </div>
281
+ <div class="section" id="release-1-2-4-2011-07-29">
282
+ <span id="release-1-2-4"></span><h1>Release 1.2.4 - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="Permalink to this headline">¶</a></h1>
283
+ <div class="section" id="id12">
284
+ <h2>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
285
+ <ul class="simple">
286
+ <li>Re-supported <tt class="docutils literal"><span class="pre">*BSD</span></tt>. (Reported by OBATA Akio)</li>
287
+ <li>Improved sed related portability. (Suggested by OBATA Akio)</li>
288
+ <li>Re-supported Visual C++ 2008.</li>
289
+ <li>Supported <a class="reference internal" href="../commands/check.html"><em>check</em></a> for hash table.</li>
290
+ <li>Ignored invalid _score in --sortby of <a class="reference internal" href="../commands/select.html"><em>select</em></a>
291
+ for convenience. #1030</li>
292
+ <li>Added document about <tt class="xref doc docutils literal"><span class="pre">log</span></tt>.</li>
293
+ <li>Supported ~/.editrc.</li>
294
+ <li>Supported ~/.groonga-history.</li>
295
+ </ul>
296
+ </div>
297
+ <div class="section" id="id13">
298
+ <h2>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h2>
299
+ <ul class="simple">
300
+ <li>Fixed broken libedit support. (Reported by Daiki Ueno)</li>
301
+ <li>Fixed source URL in <tt class="docutils literal"><span class="pre">*.spec</span></tt> (Reported by Daiki Ueno)</li>
302
+ <li>Fixed patricia trie cursor returns wrong records.</li>
303
+ <li>Added missing database lock clear for grn_obj_clear_lock()
304
+ for database.</li>
305
+ <li>Fixed wrong record's column values deletion possible on
306
+ record deletion.</li>
307
+ </ul>
308
+ </div>
309
+ <div class="section" id="id14">
310
+ <h2>Thanks<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
311
+ <ul class="simple">
312
+ <li>OBATA Akio</li>
313
+ <li>Daiki Ueno</li>
314
+ </ul>
315
+ </div>
316
+ </div>
317
+ <div class="section" id="release-1-2-3-2011-06-29">
318
+ <span id="release-1-2-3"></span><h1>Release 1.2.3 - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="Permalink to this headline">¶</a></h1>
319
+ <div class="section" id="id15">
320
+ <h2>Improvements<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h2>
321
+ <ul class="simple">
322
+ <li>Added invalid table name check. #912</li>
323
+ <li>Added groonga-query-log-analyzer that analyze query log.</li>
324
+ <li>groonga command shows failed command on error.</li>
325
+ <li>groonga command shows file name and line no on error.</li>
326
+ <li>Improved error message of <a class="reference internal" href="../commands/column_create.html"><em>column_create</em></a>. #952</li>
327
+ <li>Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)</li>
328
+ </ul>
329
+ </div>
330
+ <div class="section" id="id16">
331
+ <h2>Fixes<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h2>
332
+ <ul class="simple">
333
+ <li>fix get command crash. (Reported by OBATA Akio)</li>
334
+ <li>fix elapsed time overflow in query log. #944</li>
335
+ </ul>
336
+ </div>
337
+ <div class="section" id="id17">
338
+ <h2>Thanks<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
339
+ <ul class="simple">
340
+ <li>OBATA Akio</li>
341
+ </ul>
342
+ </div>
343
+ </div>
344
+ <div class="section" id="release-1-2-2-2011-05-29">
345
+ <span id="release-1-2-2"></span><h1>Release 1.2.2 - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="Permalink to this headline">¶</a></h1>
346
+ <div class="section" id="id18">
347
+ <h2>Improvements<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
348
+ <ul class="simple">
349
+ <li>Added packages for Ubuntu 11.04 Natty Narwhal.</li>
350
+ <li>Removed packages for Ubuntu 10.10 Maverick Meerkat.</li>
351
+ <li>RPM: Split server related packages to groonga-server package.</li>
352
+ <li>suggest: Added target object name into error messages.</li>
353
+ <li>document: Started English support. (not completed yet.)</li>
354
+ <li>groonga-suggest-httpd: Added --disable-max-fd-check option.</li>
355
+ <li>groonga: Renamed <a class="reference internal" href="../executables/groonga.html#cmdoption-a"><em class="xref std std-option">--address</em></a> option to <a class="reference internal" href="../executables/groonga.html#cmdoption--bind-address"><em class="xref std std-option">--bind-address</em></a>.</li>
356
+ <li>groonga-suggest-httpd: Renamed --address option to --bind-address.</li>
357
+ <li>Changed admin HTML install directory to
358
+ $PREFIX/share/groonga/html/admin/ from
359
+ $PREFIX/share/groonga/admin_html/.</li>
360
+ <li>groonga-suggest-httpd: Used &quot;application/json&quot; for JSON response
361
+ instead of &quot;text/javascript&quot;.</li>
362
+ <li>Windows: Used DLL relative path instead of executable file
363
+ relative path.</li>
364
+ <li>MeCab: Added error message from MeCab on MeCab initialize error.</li>
365
+ <li>suggest: Added prefix_search parameter to suggest
366
+ command. #909</li>
367
+ <li>plugin: Added grn_plugin_get_system_plugins_dir() and
368
+ grn_plugin_get_suffix() API.</li>
369
+ <li>Added grn_obj_is_builtin() API.</li>
370
+ <li><a class="reference internal" href="../commands/load.html"><em>load</em></a>: Added table name check. #934</li>
371
+ <li>Showed invalid name context in error message. #935</li>
372
+ </ul>
373
+ </div>
374
+ <div class="section" id="id19">
375
+ <h2>Fixes<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
376
+ <ul class="simple">
377
+ <li>Fixed a data breaking bug on multi process update. #890</li>
378
+ </ul>
379
+ </div>
380
+ </div>
381
+ <div class="section" id="id20">
382
+ <h1>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h1>
383
+ <div class="section" id="id21">
384
+ <h2>改良<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h2>
385
+ <ul class="simple">
386
+ <li>suggestコマンドにthresholdパラメーターを追加。#895</li>
387
+ <li>suggestのHTTPサーバにlimitパラメーターを追加。#899</li>
388
+ <li>grntest: SIGINTでの中断に対応。</li>
389
+ </ul>
390
+ </div>
391
+ <div class="section" id="id22">
392
+ <h2>修正<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
393
+ <ul class="simple">
394
+ <li>同時に複数のデータベースを開いているとき、1つでもデータベー
395
+ スを閉じると関連するプラグインも閉じられてしまう問題を修正。 #894</li>
396
+ <li>configureの--helpで出力される--with-deafult-encodingの値が
397
+ 間違っていた問題を修正。(ICHII Takashiさんが報告)</li>
398
+ <li>チュートリアル中のtypoを修正。(moozさんが修正)</li>
399
+ </ul>
400
+ </div>
401
+ <div class="section" id="id23">
402
+ <h2>感謝<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h2>
403
+ <ul class="simple">
404
+ <li>ICHII Takashiさん</li>
405
+ <li>moozさん</li>
406
+ </ul>
407
+ </div>
408
+ </div>
409
+ <div class="section" id="id24">
410
+ <h1>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h1>
411
+ <div class="section" id="id25">
412
+ <h2>改良<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h2>
413
+ <ul class="simple">
414
+ <li>MacPortsでのインストールドキュメントを追加。</li>
415
+ <li>Homebrewでのインストールドキュメントを追加。</li>
416
+ <li>WindowsではMinGWでもpthreadを使わないようにした。</li>
417
+ <li>オーバーフローチェックを強化。</li>
418
+ <li>位置情報の入力値チェックを強化。</li>
419
+ <li>インデックスを用いたジオサーチの例をチュートリアルに追加。 #438</li>
420
+ <li>Debian GNU/Linux wheezyのパッケージを追加。</li>
421
+ <li>Debian GNU/Linux lennyのパッケージを削除。</li>
422
+ <li>Debianパッケージをcdbsベースからdebhelperベースへ移行。
423
+ パッケージ名の変更あり。 #887</li>
424
+ <li>MeCabトークナイザーの読み込みエラーを無視するようにした。た
425
+ だし、ログには残る。 #893</li>
426
+ </ul>
427
+ </div>
428
+ <div class="section" id="id26">
429
+ <h2>修正<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h2>
430
+ <ul class="simple">
431
+ <li>autoconf 2.59環境において、ファイルシステムのルート直下に
432
+ groongaディレクトリを作成しようとする問題を修正。 #833</li>
433
+ <li>JSONPが動作しなくなっていた問題を修正。</li>
434
+ <li>MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。
435
+ (&#64;tomotaka_itoさんが報告)</li>
436
+ <li>[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。</li>
437
+ <li><a class="reference internal" href="../functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> の <tt class="docutils literal"><span class="pre">top_left</span></tt> と
438
+ <tt class="docutils literal"><span class="pre">bottom_right</span></tt> に同じ位置を指定するとクラッシュする問題を修正。</li>
439
+ <li>メモリリークを修正。</li>
440
+ <li>小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880</li>
441
+ <li><a class="reference internal" href="../commands/column_list.html"><em>column_list</em></a> のドキュメントを修正。 #758</li>
442
+ <li><a class="reference internal" href="../commands/table_list.html"><em>table_list</em></a> のドキュメントを修正。</li>
443
+ <li><a class="reference internal" href="../commands/load.html"><em>load</em></a> で_valueを指定するとメモリリークする問題を修正。 #878</li>
444
+ <li><a class="reference internal" href="../commands/load.html"><em>load</em></a> でクラッシュする問題を修正。 #661</li>
445
+ </ul>
446
+ </div>
447
+ <div class="section" id="id27">
448
+ <h2>実験的<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h2>
449
+ <ul class="simple">
450
+ <li>grn_table_truncate()を追加。(実験的。問題あり)</li>
451
+ <li>truncateコマンドを追加。(実験的。問題あり) #888</li>
452
+ </ul>
453
+ </div>
454
+ <div class="section" id="id28">
455
+ <h2>感謝<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h2>
456
+ <ul class="simple">
457
+ <li>&#64;tomotaka_itoさん</li>
458
+ </ul>
459
+ </div>
460
+ </div>
461
+
462
+
463
+ </div>
464
+ </div>
465
+ </div>
466
+ <div class="sphinxsidebar">
467
+ <div class="sphinxsidebarwrapper">
468
+ <h3><a href="../index.html">Table Of Contents</a></h3>
469
+ <ul>
470
+ <li><a class="reference internal" href="#">Release 1.2.9 - 2011/12/29</a><ul>
471
+ <li><a class="reference internal" href="#improvements">Improvements</a></li>
472
+ <li><a class="reference internal" href="#fixes">Fixes</a></li>
473
+ <li><a class="reference internal" href="#thanks">Thanks</a></li>
474
+ </ul>
475
+ </li>
476
+ <li><a class="reference internal" href="#release-1-2-8-2011-11-29">Release 1.2.8 - 2011/11/29</a><ul>
477
+ <li><a class="reference internal" href="#id1">Improvements</a></li>
478
+ <li><a class="reference internal" href="#id2">Fixes</a></li>
479
+ <li><a class="reference internal" href="#id3">Thanks</a></li>
480
+ </ul>
481
+ </li>
482
+ <li><a class="reference internal" href="#release-1-2-7-2011-10-29">Release 1.2.7 - 2011/10/29</a><ul>
483
+ <li><a class="reference internal" href="#id4">Improvements</a></li>
484
+ <li><a class="reference internal" href="#id5">Fixes</a></li>
485
+ <li><a class="reference internal" href="#id6">Thanks</a></li>
486
+ </ul>
487
+ </li>
488
+ <li><a class="reference internal" href="#release-1-2-6-2011-09-29">Release 1.2.6 - 2011/09/29</a><ul>
489
+ <li><a class="reference internal" href="#id7">Improvements</a></li>
490
+ <li><a class="reference internal" href="#id8">Fixes</a></li>
491
+ <li><a class="reference internal" href="#id9">Thanks</a></li>
492
+ </ul>
493
+ </li>
494
+ <li><a class="reference internal" href="#release-1-2-5-2011-08-29">Release 1.2.5 - 2011/08/29</a><ul>
495
+ <li><a class="reference internal" href="#id10">Improvements</a></li>
496
+ <li><a class="reference internal" href="#id11">Fixes</a></li>
497
+ </ul>
498
+ </li>
499
+ <li><a class="reference internal" href="#release-1-2-4-2011-07-29">Release 1.2.4 - 2011/07/29</a><ul>
500
+ <li><a class="reference internal" href="#id12">Improvements</a></li>
501
+ <li><a class="reference internal" href="#id13">Fixes</a></li>
502
+ <li><a class="reference internal" href="#id14">Thanks</a></li>
503
+ </ul>
504
+ </li>
505
+ <li><a class="reference internal" href="#release-1-2-3-2011-06-29">Release 1.2.3 - 2011/06/29</a><ul>
506
+ <li><a class="reference internal" href="#id15">Improvements</a></li>
507
+ <li><a class="reference internal" href="#id16">Fixes</a></li>
508
+ <li><a class="reference internal" href="#id17">Thanks</a></li>
509
+ </ul>
510
+ </li>
511
+ <li><a class="reference internal" href="#release-1-2-2-2011-05-29">Release 1.2.2 - 2011/05/29</a><ul>
512
+ <li><a class="reference internal" href="#id18">Improvements</a></li>
513
+ <li><a class="reference internal" href="#id19">Fixes</a></li>
514
+ </ul>
515
+ </li>
516
+ <li><a class="reference internal" href="#id20">1.2.1リリース - 2011/04/29</a><ul>
517
+ <li><a class="reference internal" href="#id21">改良</a></li>
518
+ <li><a class="reference internal" href="#id22">修正</a></li>
519
+ <li><a class="reference internal" href="#id23">感謝</a></li>
520
+ </ul>
521
+ </li>
522
+ <li><a class="reference internal" href="#id24">1.2.0リリース - 2011/03/29</a><ul>
523
+ <li><a class="reference internal" href="#id25">改良</a></li>
524
+ <li><a class="reference internal" href="#id26">修正</a></li>
525
+ <li><a class="reference internal" href="#id27">実験的</a></li>
526
+ <li><a class="reference internal" href="#id28">感謝</a></li>
527
+ </ul>
528
+ </li>
529
+ </ul>
530
+
531
+ <h3>This Page</h3>
532
+ <ul class="this-page-menu">
533
+ <li><a href="../_sources/news/1.2.x.txt"
534
+ rel="nofollow">Show Source</a></li>
535
+ </ul>
536
+ <div id="searchbox" style="display: none">
537
+ <h3>Quick search</h3>
538
+ <form class="search" action="../search.html" method="get">
539
+ <input type="text" name="q" />
540
+ <input type="submit" value="Go" />
541
+ <input type="hidden" name="check_keywords" value="yes" />
542
+ <input type="hidden" name="area" value="default" />
543
+ </form>
544
+ <p class="searchtip" style="font-size: 90%">
545
+ Enter search terms or a module, class or function name.
546
+ </p>
547
+ </div>
548
+ <script type="text/javascript">$('#searchbox').show(0);</script>
549
+ </div>
550
+ </div>
551
+ <div class="clearer"></div>
552
+ </div>
553
+ <div class="related">
554
+ <h3>Navigation</h3>
555
+ <ul>
556
+ <li class="right" style="margin-right: 10px">
557
+ <a href="../genindex.html" title="General Index"
558
+ >index</a></li>
559
+ <li><a href="../index.html">groonga v2.0.0 documentation</a> &raquo;</li>
560
+ </ul>
561
+ </div>
562
+ <div class="footer">
563
+ &copy; Copyright 2009-2012, Brazil, Inc.
564
+ </div>
565
+ </body>
566
+ </html>
@@ -9,7 +9,7 @@
9
9
  <head>
10
10
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11
11
 
12
- <title>News in Senna period &mdash; groonga v1.2.9 documentation</title>
12
+ <title>News in Senna period &mdash; groonga v2.0.0 documentation</title>
13
13
 
14
14
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
15
15
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -17,7 +17,7 @@
17
17
  <script type="text/javascript">
18
18
  var DOCUMENTATION_OPTIONS = {
19
19
  URL_ROOT: '../',
20
- VERSION: '1.2.9',
20
+ VERSION: '2.0.0',
21
21
  COLLAPSE_INDEX: false,
22
22
  FILE_SUFFIX: '.html',
23
23
  HAS_SOURCE: true
@@ -27,7 +27,7 @@
27
27
  <script type="text/javascript" src="../_static/underscore.js"></script>
28
28
  <script type="text/javascript" src="../_static/doctools.js"></script>
29
29
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
30
- <link rel="top" title="groonga v1.2.9 documentation" href="../index.html" />
30
+ <link rel="top" title="groonga v2.0.0 documentation" href="../index.html" />
31
31
  </head>
32
32
  <body>
33
33
  <div class="header">
@@ -53,7 +53,7 @@
53
53
  <li class="right" style="margin-right: 10px">
54
54
  <a href="../genindex.html" title="General Index"
55
55
  accesskey="I">index</a></li>
56
- <li><a href="../index.html">groonga v1.2.9 documentation</a> &raquo;</li>
56
+ <li><a href="../index.html">groonga v2.0.0 documentation</a> &raquo;</li>
57
57
  </ul>
58
58
  </div>
59
59
 
@@ -271,7 +271,7 @@ no longer depends on mecab mte patch.</li>
271
271
  <li class="right" style="margin-right: 10px">
272
272
  <a href="../genindex.html" title="General Index"
273
273
  >index</a></li>
274
- <li><a href="../index.html">groonga v1.2.9 documentation</a> &raquo;</li>
274
+ <li><a href="../index.html">groonga v2.0.0 documentation</a> &raquo;</li>
275
275
  </ul>
276
276
  </div>
277
277
  <div class="footer">