rroonga 4.0.3-x86-mingw32 → 4.0.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,950 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml">
7
+ <head>
8
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
+
10
+ <title>2.1.2リリース - 2013/01/29 &mdash; Groonga v4.0.4-214-gb1aaec1ドキュメント</title>
11
+
12
+ <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
+ <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ var DOCUMENTATION_OPTIONS = {
17
+ URL_ROOT: '../',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
+ COLLAPSE_INDEX: false,
20
+ FILE_SUFFIX: '.html',
21
+ HAS_SOURCE: true
22
+ };
23
+ </script>
24
+ <script type="text/javascript" src="../_static/jquery.js"></script>
25
+ <script type="text/javascript" src="../_static/underscore.js"></script>
26
+ <script type="text/javascript" src="../_static/doctools.js"></script>
27
+ <script type="text/javascript" src="../_static/translations.js"></script>
28
+ <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1ドキュメント" href="../index.html" />
30
+ </head>
31
+ <body>
32
+ <div class="header">
33
+ <h1 class="title">
34
+ <a id="top-link" href="../index.html">
35
+ <span class="project">groonga</span>
36
+ <span class="separator">-</span>
37
+ <span class="description">オープンソースのカラムストア機能付き全文検索エンジン</span>
38
+ </a>
39
+ </h1>
40
+
41
+ <div class="other-language-links">
42
+ <ul>
43
+ <li><a href="../../../en/html/news/2.x.html"><img src="../_static/us.png" alt="English">English page</a></li>
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ <div class="related">
50
+ <h3>ナビゲーション</h3>
51
+ <ul>
52
+ <li class="right" style="margin-right: 10px">
53
+ <a href="../genindex.html" title="総合索引"
54
+ accesskey="I">索引</a></li>
55
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> &raquo;</li>
56
+ </ul>
57
+ </div>
58
+
59
+ <div class="document">
60
+ <div class="documentwrapper">
61
+ <div class="bodywrapper">
62
+ <div class="body">
63
+
64
+ <div class="section" id="release-2-1-2-2013-01-29">
65
+ <span id="release-2-1-2"></span><h1>2.1.2リリース - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
66
+ <div class="section" id="improvements">
67
+ <h2>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h2>
68
+ <ul class="simple">
69
+ <li><p class="first">複数の <tt class="docutils literal"><span class="pre">query()</span></tt> を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポートしました。例えば、キーワードごとに異なる重みづけを指定して検索するのに'query(&quot;column * weight1&quot;, keyword1) || query(&quot;column * weight2&quot;, keyword2) || ...'などと <tt class="docutils literal"><span class="pre">--filter</span></tt> に指定することができます。</p>
70
+ </li>
71
+ <li><p class="first">実験的機能であったビューを削除しました。</p>
72
+ </li>
73
+ <li><p class="first"><tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> APIを追加しました。 <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> APIは非推奨となりました。 <tt class="docutils literal"><span class="pre">grn_logger</span></tt> APIを代りに使ってください。</p>
74
+ </li>
75
+ <li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
76
+ </li>
77
+ <li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
78
+ </li>
79
+ <li><p class="first"><a class="reference internal" href="../reference/tables.html"><em>テーブル</em></a> と <a class="reference internal" href="../reference/normalizers.html"><em>ノーマライザー</em></a> に関するドキュメントを追加。</p>
80
+ </li>
81
+ <li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をインストールするように改善した。</p>
82
+ </li>
83
+ <li><p class="first">範囲検索を <a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> でもサポートした。例えば、 'column1.column2...columnN &lt;= &quot;1988-01-04 00:00:00&quot;' というように <tt class="docutils literal"><span class="pre">--filter</span></tt> に範囲を指定することができるようになります。</p>
84
+ </li>
85
+ <li><p class="first">[rpm][fedora] Fedora 18をサポート。</p>
86
+ </li>
87
+ <li><p class="first">[rpm][fedora] Fedora 17サポートを削除。</p>
88
+ </li>
89
+ <li><p class="first">[doc] <a class="reference internal" href="../server/package.html"><em>サーバーパッケージ</em></a> のドキュメントを追加。</p>
90
+ </li>
91
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/functions/query.html"><em>query</em></a> のドキュメントを追加。</p>
92
+ </li>
93
+ </ul>
94
+ </div>
95
+ <div class="section" id="fixes">
96
+ <h2>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h2>
97
+ <ul class="simple">
98
+ <li><p class="first">MeCabトークナイザーの共有オブジェクトが見つからなくてもエラーをログに記録しないようにした。 [groonga-dev,01174] [wingさんが報告]</p>
99
+ </li>
100
+ <li><p class="first">[httpd] CentOS 5.4で <tt class="docutils literal"><span class="pre">SED</span></tt> 変数を明示的に設定することで、configureスクリプト実行が失敗しないようにした。</p>
101
+ </li>
102
+ <li><p class="first">値を設定していない未初期化のベクタカラムの値を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドで参照したときにクラッシュする不具合を修正した。</p>
103
+ </li>
104
+ </ul>
105
+ </div>
106
+ <div class="section" id="thanks">
107
+ <h2>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h2>
108
+ <ul class="simple">
109
+ <li><p class="first">wingさん</p>
110
+ </li>
111
+ </ul>
112
+ </div>
113
+ </div>
114
+ <div class="section" id="release-2-1-1-2012-12-29">
115
+ <span id="release-2-1-1"></span><h1>2.1.1リリース - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
116
+ <p>2.1.0のバグフィックスリリースです。2.1.0を使っている人は2.1.0ではなく2.1.1を使ってください。</p>
117
+ <div class="section" id="id1">
118
+ <h2>修正<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
119
+ <ul class="simple">
120
+ <li><p class="first">groonga 2.0.8以前で作成したデータベース中の <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の情報が失われる問題を修正。</p>
121
+ </li>
122
+ </ul>
123
+ </div>
124
+ </div>
125
+ <div class="section" id="release-2-1-0-2012-12-29">
126
+ <span id="release-2-1-0"></span><h1>2.1.0リリース - 2012/12/29<a class="headerlink" href="#release-2-1-0-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
127
+ <div class="admonition caution">
128
+ <p class="first admonition-title">ご用心</p>
129
+ <p class="last">2.1.0ではなく2.1.1を使ってください。2.1.0は <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の深刻な問題があります。</p>
130
+ </div>
131
+ <div class="admonition caution">
132
+ <p class="first admonition-title">ご用心</p>
133
+ <p>このリリースでは <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> コマンドに関する非互換な変更があります。もしご自身で作成したプログラム等でこれらコマンドの出力結果に依存しているものがあるなら、&quot;null&quot;文字列ではなくnullをサポートする必要があります。</p>
134
+ <p>このリリースでは <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションをサポートしましたが、副作用があり、一度でも古いバージョンのデータベースを新しいバージョンのgroongaで開くと、古いバージョンのgroongaではデータベースを開けなくなります。</p>
135
+ <p class="last">もうひとつトークナイザプラグインAPIに関する非互換な変更があります。 <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの引数が変更されました。このAPIの変更はトークナイザプラグインの開発者に影響があります。</p>
136
+ </div>
137
+ <div class="section" id="id2">
138
+ <h2>改良<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
139
+ <ul class="simple">
140
+ <li><p class="first">[doc] <a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> に関するドキュメントを追加。</p>
141
+ </li>
142
+ <li><p class="first"><a class="reference internal" href="../reference/functions/snippet_html.html"><em>snippet_html</em></a> の引数として式を指定できるようにした。この変更で、 <tt class="docutils literal"><span class="pre">snippet_html(&quot;STRING&quot;</span> <span class="pre">+</span> <span class="pre">&quot;STRING&quot;)</span></tt> と書けるようになります。 &quot;STRING&quot;にはカラム名や文字列を指定できます。 [嶋田 大貴さんが報告]</p>
143
+ </li>
144
+ <li><p class="first">正規化を行うプラグインを作成できるようにした。</p>
145
+ </li>
146
+ <li><p class="first"><tt class="docutils literal"><span class="pre">groonga-query-log-analyzer</span></tt> を <a class="reference external" href="http://rubygems.org/gems/groonga-query-log">groonga-query-log</a> というRubyGemsにして移動しました。これによりgroongaのパッケージをインストールせずにクエリログの解析を行えるようになります。</p>
147
+ </li>
148
+ <li><p class="first"><a class="reference internal" href="../reference/commands/table_create.html"><em>table_create</em></a> コマンドにて <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションの指定をサポートしました。正規化のためのプラグインを指定できるようになります。</p>
149
+ </li>
150
+ <li><p class="first">&quot;No Object&quot;を表現するのに&quot;null&quot;文字列ではなくnull値を使うように変更しました。これは非互換な変更で <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> といったコマンドの出力結果に影響します。</p>
151
+ </li>
152
+ <li><p class="first">正規化の振舞いを制御するためのフラグを <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの最後の引数として追加した。</p>
153
+ </li>
154
+ <li><p class="first"><a class="reference internal" href="../reference/executables/groonga.html#command-list-with-continuous-line"><em>コマンド</em></a> リストに書かれた継続行のサポート。</p>
155
+ </li>
156
+ <li><p class="first"><a class="reference internal" href="../tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> をキーのないテーブルだけでなく、ハッシュやパトリシア木、ダブル配列を指定したテーブルでも使えるように改善した。</p>
157
+ </li>
158
+ </ul>
159
+ </div>
160
+ <div class="section" id="id3">
161
+ <h2>修正<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
162
+ <ul class="simple">
163
+ <li><p class="first">[windows] <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> フラグをファイルを開くときに指定するようにした。groonga HTTPサーバが無限ループに陥っていた問題が解決します。 [GitHub#47] [Shimomura Tatsuyaさんがパッチ提供]</p>
164
+ </li>
165
+ <li><p class="first"><tt class="docutils literal"><span class="pre">--default-match-escalation-threshold</span></tt> が負数を受け付けないため、 <a class="reference internal" href="../spec/search.html"><em>検索</em></a> 時に行なわれる挙動の変更を無効化できない問題を修正しました。オプションの詳細は <a class="reference internal" href="../reference/executables/groonga.html#cmdoption--default-match-escalation-threshold"><em class="xref std std-option">--default-match-escalation-threshold</em></a> を参照してください。</p>
166
+ </li>
167
+ <li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で&quot;*&quot;のあとに <tt class="docutils literal"><span class="pre">_score</span></tt> を指定しても無視される不具合を修正した。</p>
168
+ </li>
169
+ </ul>
170
+ </div>
171
+ <div class="section" id="id4">
172
+ <h2>感謝<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
173
+ <ul class="simple">
174
+ <li><p class="first">嶋田 大貴さん</p>
175
+ </li>
176
+ <li><p class="first">Shimomura Tatsuyaさん</p>
177
+ </li>
178
+ </ul>
179
+ </div>
180
+ </div>
181
+ <div class="section" id="release-2-0-9-2012-11-29">
182
+ <span id="release-2-0-9"></span><h1>2.0.9リリース - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
183
+ <div class="section" id="id5">
184
+ <h2>改良<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h2>
185
+ <ul class="simple">
186
+ <li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance</span></tt> 関数の近似方法として <tt class="docutils literal"><span class="pre">rectangle</span></tt> を指定したときに境界をまたいでも距離の算出できるようにした。 [#1534]</p>
187
+ </li>
188
+ <li><p class="first">[doc] <a class="reference internal" href="../spec/gqtp.html"><em>GQTP</em></a> の仕様についてのドキュメントを追加した。</p>
189
+ </li>
190
+ <li><p class="first">groongaコマンドの起動時に致命的でない <tt class="docutils literal"><span class="pre">getaddrinfo()</span></tt> 関数のエラーは無視するようにした。この変更はgroongaを通常使用する場合には影響しません。その理由はデフォルトのホスト名が解決できるかチェックするのに使っていただけだからです。</p>
191
+ </li>
192
+ <li><p class="first">[実験的] キーワードとその周辺のテキストを抽出するための <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数を追加した。詳細については <a class="reference internal" href="../reference/functions/snippet_html.html"><em>snippet_html</em></a> を参照してください。</p>
193
+ </li>
194
+ <li><p class="first">テーブルのレコードを出力している際に発生したエラーを表示するようにした。</p>
195
+ </li>
196
+ <li><p class="first">複数のテーブルで関連したインデックスが設定されていれば、ネストしたインデックス (複数のカラムインデックス名を <tt class="docutils literal"><span class="pre">.</span></tt> で連結して指定)に対してキーワードで検索できるようにした。</p>
197
+ </li>
198
+ <li><p class="first"><tt class="docutils literal"><span class="pre">TokenMecab</span></tt> トークナイザを使ったときにログに&quot;[tokenizer][mecab]&quot;タグを出力するようにした。</p>
199
+ </li>
200
+ <li><p class="first"><tt class="docutils literal"><span class="pre">TokenKyTea</span></tt> トークナイザを使ったときにログに&quot;[tokenizer][kytea]&quot;タグを出力するようにした。</p>
201
+ </li>
202
+ <li><p class="first">検索結果の内容のうち、コマンドのエラー表示は別の配列として表示するようにしました。この変更は非互換な変更ですが、既存のプログラムには影響しません。</p>
203
+ </li>
204
+ <li><p class="first"><a class="reference internal" href="../reference/command/output_format.html"><em>出力形式</em></a> に関するドキュメントを追加。</p>
205
+ </li>
206
+ <li><p class="first"><a class="reference internal" href="../reference/command/return_code.html"><em>リターンコード</em></a> に関するドキュメントを追加。</p>
207
+ </li>
208
+ <li><p class="first">インデックスを使った指定範囲の検索をサポート。</p>
209
+ </li>
210
+ </ul>
211
+ </div>
212
+ <div class="section" id="id6">
213
+ <h2>修正<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h2>
214
+ <ul class="simple">
215
+ <li><p class="first"><a class="reference internal" href="../spec/gqtp.html#gqtp-header-spec"><em>GQTPヘッダー</em></a> にてステータスコードにネットワークバイトオーダーを使用するように修正した。ネットワークプロトコルの慣習に合わせたものですが、これによりgroongaバージョン2.0.8以下のクライアントからgroongaバージョン2.0.9以上のサーバに接続してコマンドの実行に失敗したときにバイトオーダーが異なるため、ステータスコードを正しく表示できなくなります。</p>
216
+ </li>
217
+ <li><p class="first">UTF-8の正規化でオフセット計算の誤りを修正した。この変更は <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数の返す結果に影響し、キーワードとタグ周辺のテキストが誤った位置に挿入されないようにする。 [#1531] [嶋田大貴さんが報告]</p>
218
+ </li>
219
+ <li><p class="first">[windows] groongaコマンドの起動時にバッファの範囲外アクセスによるセグメンテーションフォルトが発生しないように修正した。 [#1532] [Akio Tajimaさんがパッチ提供]</p>
220
+ </li>
221
+ <li><p class="first">[windows] カラムに保存しているデータのサイズが128MBを超える場合に、そのデータを参照できない不具合を修正した。 [groonga-dev,01088] [ongaeshiさんが報告]</p>
222
+ </li>
223
+ <li><p class="first"><tt class="docutils literal"><span class="pre">Int*</span></tt> や <tt class="docutils literal"><span class="pre">UInt*</span></tt> ( <tt class="docutils literal"><span class="pre">Int32/Uint32</span></tt> は除く) に対してカラムインデックスによる検索結果が正しくない不具合を修正した。</p>
224
+ </li>
225
+ <li><p class="first">削除したはずのレコードが検索結果で見つかる問題を修正した。</p>
226
+ </li>
227
+ <li><p class="first">latin1やkoi8rの正規化で、与えた文字列データにNULL終端が途中に含まれているとすべての文字列データを正規化できない不具合を修正した。</p>
228
+ </li>
229
+ <li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドでデータが保存されていないカラムを参照したときに、型にあったデフォルト値を返さない不具合を修正した。</p>
230
+ </li>
231
+ <li>Fixed to exclude the value of vector column metadata in <a class="reference internal" href="../reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a>.
232
+ This change not to contain such a metadata as search results.</li>
233
+ </ul>
234
+ </div>
235
+ <div class="section" id="id7">
236
+ <h2>感謝<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
237
+ <ul class="simple">
238
+ <li><p class="first">嶋田 大貴さん</p>
239
+ </li>
240
+ <li><p class="first">Akio Tajimaさん</p>
241
+ </li>
242
+ <li><p class="first">ongaeshiさん</p>
243
+ </li>
244
+ </ul>
245
+ </div>
246
+ </div>
247
+ <div class="section" id="release-2-0-8-2012-10-29">
248
+ <span id="release-2-0-8"></span><h1>2.0.8リリース - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
249
+ <div class="section" id="id8">
250
+ <h2>改良<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h2>
251
+ <ul class="simple">
252
+ <li><p class="first">[rpm] server-httpとhttpdパッケージの説明を改善した。 [Daiki Uenoさんが提案]</p>
253
+ </li>
254
+ <li><p class="first">プラグインによるクエリ展開のカスタマイズをサポート。</p>
255
+ </li>
256
+ <li><p class="first">[実験的] クエリ展開を行う <tt class="docutils literal"><span class="pre">QueryExpanderTSV</span></tt> プラグインを追加。</p>
257
+ </li>
258
+ <li><p class="first">Ubuntu 12.10 Quantal Quetzalをサポート。</p>
259
+ </li>
260
+ <li><p class="first">[実験的] クエリの <tt class="docutils literal"><span class="pre">output_columns</span></tt> で関数呼び出しをサポート。</p>
261
+ </li>
262
+ <li><p class="first">[doc][rpm] MeCab辞書のインストールについて説明を追加。 [serihiroさんが報告]</p>
263
+ </li>
264
+ </ul>
265
+ </div>
266
+ <div class="section" id="id9">
267
+ <h2>修正<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h2>
268
+ <ul class="simple">
269
+ <li><p class="first">[rpm] 不要な&quot;Requires&quot;をspecファイルから削除するようにした。[Daiki Uenoさんが報告]</p>
270
+ </li>
271
+ <li><p class="first">groonga-server-gqtpパッケージのライセンス表記が不正確なのを修正した。</p>
272
+ </li>
273
+ <li><p class="first">[admin] レコードの編集ボタンで誤ったレコードが表示されるのを修正した。 [GitHub#34] [firewoodさんが報告]</p>
274
+ </li>
275
+ <li><p class="first">[deb] 不要なpcreパッケージへの依存を削除した。</p>
276
+ </li>
277
+ <li><p class="first">[deb] パッケージに入っていなかったテーブルプラグインを添付するようにした。</p>
278
+ </li>
279
+ </ul>
280
+ </div>
281
+ <div class="section" id="id10">
282
+ <h2>感謝<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h2>
283
+ <ul class="simple">
284
+ <li><p class="first">うえのさん</p>
285
+ </li>
286
+ <li><p class="first">firewoodさん</p>
287
+ </li>
288
+ <li><p class="first">serihiroさん</p>
289
+ </li>
290
+ </ul>
291
+ </div>
292
+ </div>
293
+ <div class="section" id="release-2-0-7-2012-09-29">
294
+ <span id="release-2-0-7"></span><h1>2.0.7リリース - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
295
+ <div class="section" id="id11">
296
+ <h2>改良<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h2>
297
+ <ul class="simple">
298
+ <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">--query_flags</span></tt> の説明を追加。</p>
299
+ </li>
300
+ <li><p class="first">[doc][httpd] gzip圧縮についての設定サンプルを追加。</p>
301
+ </li>
302
+ <li><p class="first">[httpd][rpm][centos] groonga-httpd initスクリプトを追加。</p>
303
+ </li>
304
+ <li><p class="first">[rpm] logrotateの設定ファイルを追加。</p>
305
+ </li>
306
+ <li><p class="first">インストール中のデータベース作成をサポート。</p>
307
+ </li>
308
+ <li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_database_auto_create</span></tt> ディレクティブをサポート。</p>
309
+ </li>
310
+ <li><p class="first">集合演算でのスコアのマージをサポート。 [GitHub#31]</p>
311
+ </li>
312
+ <li><p class="first">[httpd] POSTによる <tt class="docutils literal"><span class="pre">load</span></tt> コマンドをサポート。</p>
313
+ </li>
314
+ <li><p class="first">一時結果テーブルを作成する際のエラーチェックを追加。 [GitHub#33]</p>
315
+ </li>
316
+ <li><p class="first">GQTP サーバーパッケージを追加。</p>
317
+ </li>
318
+ <li><p class="first"><tt class="docutils literal"><span class="pre">max()</span></tt> 関数を追加。</p>
319
+ </li>
320
+ <li><p class="first"><tt class="docutils literal"><span class="pre">min()</span></tt> 関数を追加。</p>
321
+ </li>
322
+ </ul>
323
+ </div>
324
+ <div class="section" id="id12">
325
+ <h2>修正<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h2>
326
+ <ul class="simple">
327
+ <li><p class="first"><tt class="docutils literal"><span class="pre">load</span></tt> コマンド実行時にベクタ要素へ主キー値の属する型情報を設定するように修正した。 [GitHub#30]</p>
328
+ </li>
329
+ <li><p class="first">[httpd] NULLでの初期化漏れを修正した。 [&#64;Kiskeさんが報告]</p>
330
+ </li>
331
+ <li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">content_type_len</span></tt> のサイズ設定漏れを修正した。</p>
332
+ </li>
333
+ <li><p class="first">[rpm][fedora] <tt class="docutils literal"><span class="pre">groonga.service</span></tt> で <tt class="docutils literal"><span class="pre">--bind-address</span></tt> を使うように修正した。</p>
334
+ </li>
335
+ <li><p class="first">不適切なフィルタの引数によリクラッシュする問題を修正した。 [GitHub#32]</p>
336
+ </li>
337
+ <li><p class="first">Time型からTime型へのキャストで値が壊れる不具合を修正。</p>
338
+ </li>
339
+ <li><p class="first">Time型からFloat型へのキャストで値が壊れる不具合を修正。</p>
340
+ </li>
341
+ </ul>
342
+ </div>
343
+ <div class="section" id="id13">
344
+ <h2>感謝<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h2>
345
+ <ul class="simple">
346
+ <li><p class="first">&#64;Kiskeさん</p>
347
+ </li>
348
+ </ul>
349
+ </div>
350
+ </div>
351
+ <div class="section" id="release-2-0-6-2012-08-29">
352
+ <span id="release-2-0-6"></span><h1>2.0.6リリース - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
353
+ <div class="section" id="id14">
354
+ <h2>改良<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h2>
355
+ <ul class="simple">
356
+ <li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> メタパッケージを追加。 [#1451]</p>
357
+ </li>
358
+ <li><p class="first"><tt class="docutils literal"><span class="pre">--query_flags</span></tt> オプションを <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポート。</p>
359
+ </li>
360
+ <li><p class="first">groonga-httpdでPCREの自動検出をサポート。</p>
361
+ </li>
362
+ <li><p class="first">[doc] TwiterとFacebookの情報を追加。</p>
363
+ </li>
364
+ <li><p class="first">MeCabで <tt class="docutils literal"><span class="pre">mecab_new2()</span></tt> 関数失敗時のエラーメッセージも表示するように改善した。</p>
365
+ </li>
366
+ <li><p class="first">[doc] groonga をサーバーとして利用するときの詳細ドキュメントを追加。</p>
367
+ </li>
368
+ <li><p class="first"><tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> の詳細を記録するように改善した。</p>
369
+ </li>
370
+ <li><p class="first">カスタムセレクタの定義をサポート。</p>
371
+ </li>
372
+ <li><p class="first">groongaで <tt class="docutils literal"><span class="pre">--working-directory</span></tt> オプションをサポートした。</p>
373
+ </li>
374
+ <li><p class="first">groonga-httpdで <tt class="docutils literal"><span class="pre">dump</span></tt> コマンドをサポートした。</p>
375
+ </li>
376
+ <li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドで見つからないターゲット名を表示するように改善した。</p>
377
+ </li>
378
+ <li><p class="first">テーブルプラグインで実装されている <tt class="docutils literal"><span class="pre">get</span></tt> コマンドについてのエラーメッセージを改善した。</p>
379
+ </li>
380
+ <li><p class="first">[rpm][centos] MeCab 0.994をサポートした。 [#1455] [岩井さんが提案]</p>
381
+ </li>
382
+ <li><p class="first">ログ記録レベルの既定の最大値を <tt class="docutils literal"><span class="pre">grn_init()</span></tt> を呼ぶ前に変更可能にした。</p>
383
+ </li>
384
+ <li><p class="first">すべてのレコードIDを結果テーブルへとコピーするための関数 <tt class="docutils literal"><span class="pre">all_records()</span></tt> を追加した。</p>
385
+ </li>
386
+ <li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドの <tt class="docutils literal"><span class="pre">--query</span></tt> で '-WORD' 構文をサポート。</p>
387
+ </li>
388
+ </ul>
389
+ </div>
390
+ <div class="section" id="id15">
391
+ <h2>修正<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h2>
392
+ <ul class="simple">
393
+ <li><p class="first">[doc] チュートリアルの実行例を修正した。 [#1428] [岩井さんが報告]</p>
394
+ </li>
395
+ <li><p class="first">groonga-httpdの初期化スクリプトでユーザ/グループとしてgroongaを強制的に指定しないように修正した。</p>
396
+ </li>
397
+ <li><p class="first">[rpm][fedora] groonga-httpdサービスでstopパラメータの指定漏れを修正した。</p>
398
+ </li>
399
+ <li>Fixed a bug that the last 1 byte for cache key is ignored by <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
400
+ <li><p class="first">複雑な関数呼び出しで引数の個数の検出処理を修正した。</p>
401
+ </li>
402
+ <li><p class="first">Clangによる警告を抑制するように修正した。</p>
403
+ </li>
404
+ <li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドを実行する際に <tt class="docutils literal"><span class="pre">add</span></tt> コマンドが存在しないことによる前方非互換なエラーを修正した。</p>
405
+ </li>
406
+ <li><p class="first">[windows] バイナリデータを含むデータベースを開く際のエラーを修正した。 [&#64;yitoさんが報告]</p>
407
+ </li>
408
+ </ul>
409
+ </div>
410
+ <div class="section" id="id16">
411
+ <h2>感謝<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h2>
412
+ <ul class="simple">
413
+ <li><p class="first">岩井さん</p>
414
+ </li>
415
+ <li><p class="first">&#64;yitoさん</p>
416
+ </li>
417
+ </ul>
418
+ </div>
419
+ </div>
420
+ <div class="section" id="release-2-0-5-2012-07-29">
421
+ <span id="release-2-0-5"></span><h1>2.0.5リリース - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
422
+ <div class="section" id="id17">
423
+ <h2>改良<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h2>
424
+ <ul class="simple">
425
+ <li><p class="first"><tt class="docutils literal"><span class="pre">&quot;rect&quot;</span></tt> もしくは <tt class="docutils literal"><span class="pre">&quot;rectangle&quot;</span></tt> 引数を指定した南半球における距離の計算をサポート。 [#1418] [#1419] [#1420] [#1421]</p>
426
+ </li>
427
+ <li><p class="first">[doc] スクリプト構文にてリテラルの説明を追加。</p>
428
+ </li>
429
+ <li><p class="first">groonga-suggestとgroonga-httpdのソース外ビルドに対応。</p>
430
+ </li>
431
+ <li><p class="first">クエリパラメータの区切り文字として &quot;;&quot;をサポート。 [#1406] [岩井さんが提案]</p>
432
+ </li>
433
+ <li><p class="first">[doc] スクリプト構文の説明を追加。</p>
434
+ </li>
435
+ <li><p class="first">スクリプト構文で近傍検索を行う <tt class="docutils literal"><span class="pre">'column</span> <span class="pre">*N</span> <span class="pre">&quot;word1</span> <span class="pre">word2</span> <span class="pre">...&quot;'</span></tt> 構文をサポート。 [#1423]</p>
436
+ </li>
437
+ <li><p class="first">[doc] 後方一致検索の制限を追記。</p>
438
+ </li>
439
+ <li><p class="first">近傍検索で <tt class="docutils literal"><span class="pre">_key</span></tt> 疑似カラムをサポート。 [GitHub#19]</p>
440
+ </li>
441
+ <li><p class="first">[doc] 基本的なECMAScript関連の構文を追加。</p>
442
+ </li>
443
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/functions/geo_distance.html"><em>geo_distance</em></a> の説明を更新。</p>
444
+ </li>
445
+ <li><p class="first">[rpm][fedora] Fedora 17をサポート。</p>
446
+ </li>
447
+ <li><p class="first">[rpm][fedora] Fedora 16サポートを削除。</p>
448
+ </li>
449
+ <li><p class="first">論理演算子 <tt class="docutils literal"><span class="pre">&quot;!&quot;</span></tt> をサポート。 [GitHub#22]</p>
450
+ </li>
451
+ <li><p class="first">[httpd] groongaデータベースごとのロケーション指定をサポート。</p>
452
+ </li>
453
+ <li><p class="first">loadコマンドを処理中にはエラーメッセージを返すように改善。</p>
454
+ </li>
455
+ <li><p class="first">継続困難なエラーが発生した場合にloadコマンドを中断するように改善。</p>
456
+ </li>
457
+ <li><p class="first">正しくない--columnsの値が渡されたときloadコマンドを中断するように改善。</p>
458
+ </li>
459
+ <li><p class="first">ロックされたデータベースのオープンをサポート。 [GitHub#21]</p>
460
+ </li>
461
+ </ul>
462
+ </div>
463
+ <div class="section" id="id18">
464
+ <h2>修正<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h2>
465
+ <ul class="simple">
466
+ <li><p class="first">groonga-httpdが Mac OS Xでビルドできない問題を修正。[島田 浩二さんが報告]</p>
467
+ </li>
468
+ <li><p class="first">groonga-httpdがインストール済みのヘッダファイルを使用しないように修正。</p>
469
+ </li>
470
+ <li><p class="first">Mac OS X Lionでgroongaがビルドできない問題を修正。</p>
471
+ </li>
472
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/commands/table_remove.html"><em>table_remove</em></a> コマンドの説明を修正。</p>
473
+ </li>
474
+ <li><p class="first">インデックスが張られていないと未対応のオぺレータで無限ループする問題を修正。 [GitHub#20]</p>
475
+ </li>
476
+ <li><p class="first">メモリリークを引き起すエラーコードの誤りを修正。</p>
477
+ </li>
478
+ <li><p class="first">カラムの値を壊すことにつながるエラーコードの誤りを修正。</p>
479
+ </li>
480
+ <li><p class="first">[admin] エラーメッセージをエスケープするように修正。</p>
481
+ </li>
482
+ <li><p class="first">データベースの非互換を引き起こす読めないオブジェクトを無視するように修正。 [#1429] [岩井さんが報告]</p>
483
+ </li>
484
+ </ul>
485
+ </div>
486
+ <div class="section" id="id19">
487
+ <h2>感謝<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h2>
488
+ <ul class="simple">
489
+ <li><p class="first">島田 浩二さん</p>
490
+ </li>
491
+ <li><p class="first">岩井さん</p>
492
+ </li>
493
+ </ul>
494
+ </div>
495
+ </div>
496
+ <div class="section" id="release-2-0-4-2012-06-29">
497
+ <span id="release-2-0-4"></span><h1>2.0.4リリース - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
498
+ <div class="section" id="id20">
499
+ <h2>改良<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h2>
500
+ <ul class="simple">
501
+ <li><p class="first">KyTea 0.4.2のみをサポート。</p>
502
+ </li>
503
+ <li><p class="first">KyTea 0.4.1以前のサポートを削除。</p>
504
+ </li>
505
+ <li><p class="first">[実験的] nginxベースのHTTPインタフェースをサポート。</p>
506
+ </li>
507
+ <li><p class="first"><tt class="docutils literal"><span class="pre">&quot;rect&quot;</span></tt> もしくは <tt class="docutils literal"><span class="pre">&quot;rectangle&quot;</span></tt> 引数を指定した北半球における距離の計算をサポート。</p>
508
+ </li>
509
+ <li><p class="first">[doc] <a class="reference internal" href="../development/travis-ci.html"><em>Travis CI</em></a> の統合に関するドキュメントを追加。</p>
510
+ </li>
511
+ <li><p class="first">[doc] 全文検索とフレーズ検索についての説明を追加。詳細については <a class="reference internal" href="../reference/grn_expr/query_syntax.html#full-text-search-condition"><em>全文検索条件</em></a> および <a class="reference internal" href="../reference/grn_expr/query_syntax.html#phrase-search-condition"><em>フレーズ検索条件</em></a> を参照してください。</p>
512
+ </li>
513
+ <li><p class="first">[doc] 比較条件についての説明を追加。詳細は <a class="reference internal" href="../reference/grn_expr/query_syntax.html#conditional-expression"><em>条件式</em></a> を参照してください。</p>
514
+ </li>
515
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/grn_expr/query_syntax.html"><em>クエリー構文</em></a> のサンプルを追加。</p>
516
+ </li>
517
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/grn_expr/query_syntax.html#combined-expression"><em>結合式</em></a> の説明を追加。</p>
518
+ </li>
519
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/grn_expr/query_syntax.html#prefix-search-condition"><em>前方一致検索条件</em></a> と <a class="reference internal" href="../reference/grn_expr/query_syntax.html#suffix-search-condition"><em>後方一致検索条件</em></a> の説明を追加。</p>
520
+ </li>
521
+ <li><p class="first">インデックスを使った後方一致検索をサポート。</p>
522
+ </li>
523
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/grn_expr.html"><em>grn_expr</em></a> に関するドキュメントを追加。</p>
524
+ </li>
525
+ <li><p class="first">[munin] RubyGemsでインストールしたJSONライブラリをサポート。 [GitHub#17] [岩井さんがパッチ提供]</p>
526
+ </li>
527
+ <li><p class="first">[doc] チュートリアル記載のTime型指定値についての説明を更新。 [#1405] [岩井さんが報告]</p>
528
+ </li>
529
+ <li><p class="first">[rpm] groongaパッケージから必要のないgroonga-tokenizer-mecabパッケージへの依存関係を削除。 [GitHub#18] [岩井さんがパッチ提供]</p>
530
+ </li>
531
+ </ul>
532
+ </div>
533
+ <div class="section" id="id21">
534
+ <h2>修正<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h2>
535
+ <ul class="simple">
536
+ <li><p class="first">Mac OS Xでバッチモードを使用した際にコマンドプロンプトの表示が意図しない状態になる問題を修正。 [&#64;soundkitchenさんが報告]</p>
537
+ </li>
538
+ <li><p class="first">誤ったコマンドをクライアントモードで実行しても終了しないように修正。 [#1305]</p>
539
+ </li>
540
+ <li><p class="first"><tt class="docutils literal"><span class="pre">--query</span></tt> 構文で <tt class="docutils literal"><span class="pre">'=R'</span></tt> が <tt class="docutils literal"><span class="pre">'OR'</span></tt> として扱われてしまう問題を修正。 [#1393]</p>
541
+ </li>
542
+ </ul>
543
+ </div>
544
+ <div class="section" id="id22">
545
+ <h2>感謝<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h2>
546
+ <ul class="simple">
547
+ <li><p class="first">&#64;soundkitchenさん</p>
548
+ </li>
549
+ <li><p class="first">岩井さん</p>
550
+ </li>
551
+ </ul>
552
+ </div>
553
+ </div>
554
+ <div class="section" id="release-2-0-3-2012-05-29">
555
+ <span id="release-2-0-3"></span><h1>2.0.3リリース - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
556
+ <div class="section" id="id23">
557
+ <h2>改良<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h2>
558
+ <ul class="simple">
559
+ <li><p class="first">[doc] リリース手順を追加。</p>
560
+ </li>
561
+ <li><p class="first">1プロセスで開けるファイルディスクリプターの最大数が4096という制限を削除。</p>
562
+ </li>
563
+ <li><p class="first">[実験的] tableプラグインを追加。</p>
564
+ </li>
565
+ <li><p class="first">[doc] <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> コマンドの説明を追加。</p>
566
+ </li>
567
+ <li><p class="first">[doc] 実行例をコピー&amp;ペーストしやすくした。</p>
568
+ </li>
569
+ <li><p class="first">[windows] Visual Studio 2010 ExpressとCMakeを使ったビルドをサポート。詳細は <a class="reference internal" href="../install/windows.html"><em>Windows</em></a> を参照してください。</p>
570
+ </li>
571
+ <li><p class="first">[doc][solaris] Solarisでビルドするためのドキュメントを追加。詳細は <a class="reference internal" href="../install/solaris.html"><em>Oracle Solaris</em></a> を参照してください。</p>
572
+ </li>
573
+ <li><p class="first">[doc][yum] epel-releaseパッケージのバージョンを更新。[岩井さんが報告]</p>
574
+ </li>
575
+ <li><p class="first">[doc][centos6] RepoforgeにあるCentOS 6用のMuninを使うという設定を削除。[岩井さんが報告]</p>
576
+ </li>
577
+ <li><p class="first">ソースをzip形式でも配布するようにした。</p>
578
+ </li>
579
+ <li><p class="first">[munin] groonga_dist Muninプラグインが複数のファイルを使っているオブジェクトをサポート。</p>
580
+ </li>
581
+ <li><p class="first">Travis CIを使うようにした。</p>
582
+ </li>
583
+ <li><p class="first">[yum] groongaのyumリポジトリを提供するRPMパッケージ名をgroonga-repositoryからgroonga-releaseへと変更。これは、centos-releaseやfedora-releaseといったRPMパッケージの命名規則とあわせるためである。</p>
584
+ </li>
585
+ </ul>
586
+ </div>
587
+ <div class="section" id="id24">
588
+ <h2>修正<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h2>
589
+ <ul class="simple">
590
+ <li><p class="first">[doc] yumリポジトリを更新するためのコマンドを修正。 [岩井さんが提案]</p>
591
+ </li>
592
+ <li><p class="first">[deb] logrotateでlog_reopenコマンドが誤ったプロトコルを使用する不具合を修正。</p>
593
+ </li>
594
+ <li><p class="first">XMLレスポンスのERRORタグが壊れている問題を修正。[#1363] [GitHub#13] [岩井さんがパッチ提供]</p>
595
+ </li>
596
+ <li><p class="first">grn_ctx_fin()がgrn_ctxの一部をクリアしきれていない問題を修正。</p>
597
+ </li>
598
+ <li><p class="first"><tt class="docutils literal"><span class="pre">&amp;!</span></tt> 演算子をグループ化した式と一緒に使うと間違った結果を返す不具合を修正。[#1372]</p>
599
+ </li>
600
+ <li><p class="first">インデックスのソースに指定したカラム経由でレコードのキーを登録するとキーが正規化されない問題を修正。</p>
601
+ </li>
602
+ </ul>
603
+ </div>
604
+ <div class="section" id="id25">
605
+ <h2>感謝<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h2>
606
+ <ul class="simple">
607
+ <li><p class="first">岩井さん</p>
608
+ </li>
609
+ </ul>
610
+ </div>
611
+ </div>
612
+ <div class="section" id="release-2-0-2-2012-04-29">
613
+ <span id="release-2-0-2"></span><h1>2.0.2リリース - 2012/04/29<a class="headerlink" href="#release-2-0-2-2012-04-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
614
+ <div class="admonition caution">
615
+ <p class="first admonition-title">ご用心</p>
616
+ <p>今回のリリースよりパッケージへ署名する鍵を変更しました。groongaパッケージを更新する前にパッケージ署名用の新しい鍵をインポートして下さい。</p>
617
+ <p>Debian/Ubuntu:</p>
618
+ <div class="highlight-none"><div class="highlight"><pre>% sudo apt-get update
619
+ % sudo apt-get -y --allow-unauthenticated install groonga-keyring
620
+ </pre></div>
621
+ </div>
622
+ <p>CentOS/Fedora:</p>
623
+ <div class="last highlight-none"><div class="highlight"><pre>% sudo yum makecache
624
+ % sudo yum install --nogpgcheck -y groonga-repository
625
+ </pre></div>
626
+ </div>
627
+ </div>
628
+ <div class="section" id="id26">
629
+ <h2>改良<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h2>
630
+ <ul class="simple">
631
+ <li><p class="first">[pkg-config] 必要のないMessagePackへの依存関係を削除。</p>
632
+ </li>
633
+ <li><p class="first">[rpm][fedora] libeditをサポート。[#1325] [IWAI, Masaharuさんが提案]</p>
634
+ </li>
635
+ <li><p class="first">[rpm] zlibおよびLZOをサポート。[#1324] [IWAI, Masaharuさんがパッチ提供]</p>
636
+ </li>
637
+ <li><p class="first">[groonga] デーモン化のタイミングを改善。groongaサーバーはソケットがlisten状態になった後にデーモン化するようになった。これによりgroongaサーバーがデーモン化した時点で接続を受け付けられる状態になっている。 [#1326]</p>
638
+ </li>
639
+ <li><p class="first">[admin] groongaの管理ページでサジェスト機能をサポート。</p>
640
+ </li>
641
+ <li><p class="first">[dump] Mecabのトークナイザのロードエラーを無視するようにした。</p>
642
+ </li>
643
+ <li><p class="first">CMakeをサポート。</p>
644
+ </li>
645
+ <li><p class="first">[load] カラムの値が設定できなかった時のエラーレポートをサポート。</p>
646
+ </li>
647
+ <li><p class="first">類似検索をサポート。類似検索の構文は <tt class="docutils literal"><span class="pre">select</span> <span class="pre">--filter</span> <span class="pre">&quot;column</span> <span class="pre">*S</span> <span class="pre">'TEXT'&quot;</span></tt> 。 [#1342]</p>
648
+ </li>
649
+ <li><p class="first">[apt][yum] パッケージ署名用の鍵を変更。</p>
650
+ </li>
651
+ <li><p class="first">Ubuntu Precise Pangolinをサポート。</p>
652
+ </li>
653
+ <li><p class="first">[apt] groongaのパッケージ署名用の鍵を提供するgroonga-keyring debパッケージを追加。</p>
654
+ </li>
655
+ </ul>
656
+ </div>
657
+ <div class="section" id="id27">
658
+ <h2>修正<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h2>
659
+ <ul class="simple">
660
+ <li><p class="first">[deb][rpm] 非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> オプションではなく <tt class="docutils literal"><span class="pre">--bind--address</span></tt> オプションを使用するようにした。[#1320] [IWAI, Masaharuさんがパッチ提供]</p>
661
+ </li>
662
+ <li><p class="first">[deb] groonga-serverパッケージの設定ファイルを <tt class="docutils literal"><span class="pre">/etc/default/groonga</span></tt> から <tt class="docutils literal"><span class="pre">/etc/default/groonga-server</span></tt> へ改名。</p>
663
+ </li>
664
+ <li><p class="first">[rpm][fedora] groonga-serverの%postで更新処理を行うかどうかの条件を修正。 [GitHub#11] [Daiki Uenoさんがパッチ提供]</p>
665
+ </li>
666
+ <li><p class="first">[rpm] 必要のないログを削除。 [#1328] [IWAI, Masaharuさんがパッチ提供]</p>
667
+ </li>
668
+ <li><p class="first">[deb][rpm] curlへの依存関係を追加。 [GitHub#12] [IWAI, Masaharuさんがパッチ提供]</p>
669
+ </li>
670
+ <li><p class="first">[rpm] groongaパッケージから必要のないrubyパッケージへの依存関係を削除。 [#1330] [IWAI, Masaharuさんが提案]</p>
671
+ </li>
672
+ <li><p class="first">[deb] groonga-serverの設定ファイルに未設定だったデフォルト値を追加。</p>
673
+ </li>
674
+ <li><p class="first">非常に大きな転置インデックスを更新しながら検索するとクラッシュする不具合を修正。 [#1329]</p>
675
+ </li>
676
+ <li><p class="first">文字列をバイト文字列でなく文字として比較している不具合を修正。 [#1340] [Kawaji Shinyaさんが報告]</p>
677
+ </li>
678
+ </ul>
679
+ </div>
680
+ <div class="section" id="id28">
681
+ <h2>感謝<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h2>
682
+ <ul class="simple">
683
+ <li><p class="first">岩井さん</p>
684
+ </li>
685
+ <li><p class="first">うえのさん</p>
686
+ </li>
687
+ <li><p class="first">Shinya Kawajiさん</p>
688
+ </li>
689
+ </ul>
690
+ </div>
691
+ </div>
692
+ <div class="section" id="release-2-0-1-2012-03-29">
693
+ <span id="release-2-0-1"></span><h1>2.0.1リリース - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
694
+ <div class="section" id="id29">
695
+ <h2>改良<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h2>
696
+ <ul class="simple">
697
+ <li><p class="first">別ディレクトリでのビルドをサポートした。 [#1298] [かずひこさんが報告]</p>
698
+ </li>
699
+ <li><p class="first">[solaris] Solaris 11上でのビルドできるようにした。 [かずひこさんが報告]</p>
700
+ </li>
701
+ <li><p class="first">[test] 機能テストを追加した。</p>
702
+ </li>
703
+ <li><p class="first">[test] Rubyでテストを実行するためにはconfigureに <tt class="docutils literal"><span class="pre">--with-ruby19</span></tt> オプションを指定しなければいけないようにした。</p>
704
+ </li>
705
+ <li><p class="first">[dump] デフォルトトークナイザーを持っているテーブルのレコードもダンプするようにした。</p>
706
+ </li>
707
+ <li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">similar_search</span></tt> オプションを追加。</p>
708
+ </li>
709
+ <li><p class="first">[groonga] 非推奨の <tt class="docutils literal"><span class="pre">-a</span></tt> と <tt class="docutils literal"><span class="pre">--address</span></tt> と <tt class="docutils literal"><span class="pre">--admin-html-path</span></tt> オプションを削除した。</p>
710
+ </li>
711
+ <li><p class="first">戻り値チェックを追加した。 [GitHub#9] [Markus Elfringさんが報告]</p>
712
+ </li>
713
+ <li><p class="first">[dat] 単語抽出処理をサポートした。</p>
714
+ </li>
715
+ <li><p class="first"><a class="reference external" href="http://groonga.org/ja/logo/">ロゴ</a> を追加した。</p>
716
+ </li>
717
+ <li><p class="first">HTMLのデザインを更新した。</p>
718
+ </li>
719
+ <li><p class="first"><tt class="docutils literal"><span class="pre">grntest</span></tt> を <tt class="docutils literal"><span class="pre">groonga-benchmark</span></tt> に改名した。</p>
720
+ </li>
721
+ <li><p class="first">CentOS 5上で <tt class="docutils literal"><span class="pre">autogen.sh</span></tt> が動くようにした。</p>
722
+ </li>
723
+ <li><p class="first">[linux] <tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> カーネルパラメーターの値をチェックするようにした。 [#1289]</p>
724
+ </li>
725
+ <li><p class="first"><tt class="docutils literal"><span class="pre">grn_snip</span></tt> が <tt class="docutils literal"><span class="pre">grn_obj</span></tt> の仕組みを使うようにした。 [#1054]</p>
726
+ </li>
727
+ </ul>
728
+ </div>
729
+ <div class="section" id="id30">
730
+ <h2>修正<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h2>
731
+ <ul class="simple">
732
+ <li><p class="first">インストールしたRubyスクリプトをuninstallでアンインストールできない問題を修正した。 [#1299] [かずひこさんが報告]</p>
733
+ </li>
734
+ <li><p class="first">Gemfileを追加した。 [#1302] [かずひこさんが報告]</p>
735
+ </li>
736
+ <li><p class="first">インデックスに登録されているレコードが見つからないことがある問題を修正した。この機能を使っているのはmroongaだけである。 [#1303]</p>
737
+ </li>
738
+ <li><p class="first">[groonga] <tt class="docutils literal"><span class="pre">--server-id</span></tt> オプションの名前の最後に <tt class="docutils literal"><span class="pre">-id</span></tt> がついていなかったので追加した。</p>
739
+ </li>
740
+ <li><p class="first">latin1を正規化するときに意図しないメモリ領域にアクセスしてしまう問題を修正した。</p>
741
+ </li>
742
+ </ul>
743
+ </div>
744
+ <div class="section" id="id31">
745
+ <h2>感謝<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h2>
746
+ <ul class="simple">
747
+ <li><p class="first">かずひこさん</p>
748
+ </li>
749
+ <li><p class="first">Markus Elfringさん</p>
750
+ </li>
751
+ </ul>
752
+ </div>
753
+ </div>
754
+ <div class="section" id="release-2-0-0-2012-02-29">
755
+ <span id="release-2-0-0"></span><h1>2.0.0リリース - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
756
+ <div class="section" id="id32">
757
+ <h2>改良<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h2>
758
+ <ul class="simple">
759
+ <li><p class="first">[dat] 長さが0かどうかキーをチェックするようにした。</p>
760
+ </li>
761
+ <li><p class="first">[windows] GCC関連のDLLを同梱するようにした。 [groonga-dev,00686] [鈴木さんが報告]</p>
762
+ </li>
763
+ <li><p class="first">[php] PHP 5.4に対応した。 [Daiki Uenoさんがパッチ提供]</p>
764
+ </li>
765
+ <li><p class="first">FSFの住所を更新した。 [Daiki Uenoさんが提案]</p>
766
+ </li>
767
+ <li><p class="first">[fedora] systemdに対応した。 [Daiki Uenoさんがパッチ提供]</p>
768
+ </li>
769
+ <li><p class="first">[rpm][debian] デフォルトのプロトコルをgqtpからHTTPに変更した。</p>
770
+ </li>
771
+ <li><p class="first">[rpm][centos] statusコマンドに対応した。</p>
772
+ </li>
773
+ <li><p class="first">ログメッセージから必要のない <tt class="docutils literal"><span class="pre">:</span></tt> を削除した。</p>
774
+ </li>
775
+ <li><p class="first">非推奨となっていたgrn_queryを削除した。 [#1247]</p>
776
+ </li>
777
+ <li><p class="first">テーブル作成時にgrn_ctx_at()の呼び出し回数を減らした。</p>
778
+ </li>
779
+ <li><p class="first">[pat] キャッシュに対応した。</p>
780
+ </li>
781
+ <li><p class="first">[tokenizer] トークナイザーAPIを整理した。</p>
782
+ </li>
783
+ <li><p class="first">名前に <tt class="docutils literal"><span class="pre">&#64;</span></tt> も使えるようにした。</p>
784
+ </li>
785
+ <li><p class="first">[tokenizer] <a class="reference external" href="http://www.phontron.com/kytea/index-ja.html">KyTea</a> を使ったトークナイザーを追加した。</p>
786
+ </li>
787
+ <li><p class="first"><a class="reference internal" href="../reference/indexing.html"><em>静的なインデックス構築方法</em></a> をサポートした。</p>
788
+ </li>
789
+ <li><p class="first">[tokenizer] MeCab 0.993に対応した。 [groonga-dev,00703] [Masaharu YOSHIOKAさんが報告]</p>
790
+ </li>
791
+ <li><p class="first">[windows] MessagePackに対応した。</p>
792
+ </li>
793
+ </ul>
794
+ </div>
795
+ <div class="section" id="id33">
796
+ <h2>修正<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h2>
797
+ <ul class="simple">
798
+ <li><p class="first">[pat] 最後のノードを見つけられない問題を修正した。 [#1258]</p>
799
+ </li>
800
+ <li><p class="first">[doc] 日本語ページ内のリンクを修正した。 [&#64;naoinaさんが報告]</p>
801
+ </li>
802
+ <li><p class="first">[doc] 間違ったデフォルト値を修正した。 [&#64;naoinaさんが報告]</p>
803
+ </li>
804
+ <li><p class="first">誤字を修正した。[かずひこさんが報告]</p>
805
+ </li>
806
+ <li><p class="first">[http] <tt class="docutils literal"><span class="pre">load</span></tt> コマンドのエラーがクリアされない不具合を修正した。 [&#64;wareohjiさんが報告]</p>
807
+ </li>
808
+ </ul>
809
+ </div>
810
+ <div class="section" id="id34">
811
+ <h2>感謝<a class="headerlink" href="#id34" title="このヘッドラインへのパーマリンク">¶</a></h2>
812
+ <ul class="simple">
813
+ <li><p class="first">鈴木さん</p>
814
+ </li>
815
+ <li><p class="first">うえのさん</p>
816
+ </li>
817
+ <li><p class="first">&#64;naoinaさん</p>
818
+ </li>
819
+ <li><p class="first">かずひこさん</p>
820
+ </li>
821
+ <li><p class="first">Masaharu YOSHIOKAさん</p>
822
+ </li>
823
+ <li><p class="first">&#64;wareohjiさん</p>
824
+ </li>
825
+ </ul>
826
+ </div>
827
+ </div>
828
+
829
+
830
+ </div>
831
+ </div>
832
+ </div>
833
+ <div class="sphinxsidebar">
834
+ <div class="sphinxsidebarwrapper">
835
+ <h3><a href="../index.html">目次</a></h3>
836
+ <ul>
837
+ <li><a class="reference internal" href="#">2.1.2リリース - 2013/01/29</a><ul>
838
+ <li><a class="reference internal" href="#improvements">改良</a></li>
839
+ <li><a class="reference internal" href="#fixes">修正</a></li>
840
+ <li><a class="reference internal" href="#thanks">感謝</a></li>
841
+ </ul>
842
+ </li>
843
+ <li><a class="reference internal" href="#release-2-1-1-2012-12-29">2.1.1リリース - 2012/12/29</a><ul>
844
+ <li><a class="reference internal" href="#id1">修正</a></li>
845
+ </ul>
846
+ </li>
847
+ <li><a class="reference internal" href="#release-2-1-0-2012-12-29">2.1.0リリース - 2012/12/29</a><ul>
848
+ <li><a class="reference internal" href="#id2">改良</a></li>
849
+ <li><a class="reference internal" href="#id3">修正</a></li>
850
+ <li><a class="reference internal" href="#id4">感謝</a></li>
851
+ </ul>
852
+ </li>
853
+ <li><a class="reference internal" href="#release-2-0-9-2012-11-29">2.0.9リリース - 2012/11/29</a><ul>
854
+ <li><a class="reference internal" href="#id5">改良</a></li>
855
+ <li><a class="reference internal" href="#id6">修正</a></li>
856
+ <li><a class="reference internal" href="#id7">感謝</a></li>
857
+ </ul>
858
+ </li>
859
+ <li><a class="reference internal" href="#release-2-0-8-2012-10-29">2.0.8リリース - 2012/10/29</a><ul>
860
+ <li><a class="reference internal" href="#id8">改良</a></li>
861
+ <li><a class="reference internal" href="#id9">修正</a></li>
862
+ <li><a class="reference internal" href="#id10">感謝</a></li>
863
+ </ul>
864
+ </li>
865
+ <li><a class="reference internal" href="#release-2-0-7-2012-09-29">2.0.7リリース - 2012/09/29</a><ul>
866
+ <li><a class="reference internal" href="#id11">改良</a></li>
867
+ <li><a class="reference internal" href="#id12">修正</a></li>
868
+ <li><a class="reference internal" href="#id13">感謝</a></li>
869
+ </ul>
870
+ </li>
871
+ <li><a class="reference internal" href="#release-2-0-6-2012-08-29">2.0.6リリース - 2012/08/29</a><ul>
872
+ <li><a class="reference internal" href="#id14">改良</a></li>
873
+ <li><a class="reference internal" href="#id15">修正</a></li>
874
+ <li><a class="reference internal" href="#id16">感謝</a></li>
875
+ </ul>
876
+ </li>
877
+ <li><a class="reference internal" href="#release-2-0-5-2012-07-29">2.0.5リリース - 2012/07/29</a><ul>
878
+ <li><a class="reference internal" href="#id17">改良</a></li>
879
+ <li><a class="reference internal" href="#id18">修正</a></li>
880
+ <li><a class="reference internal" href="#id19">感謝</a></li>
881
+ </ul>
882
+ </li>
883
+ <li><a class="reference internal" href="#release-2-0-4-2012-06-29">2.0.4リリース - 2012/06/29</a><ul>
884
+ <li><a class="reference internal" href="#id20">改良</a></li>
885
+ <li><a class="reference internal" href="#id21">修正</a></li>
886
+ <li><a class="reference internal" href="#id22">感謝</a></li>
887
+ </ul>
888
+ </li>
889
+ <li><a class="reference internal" href="#release-2-0-3-2012-05-29">2.0.3リリース - 2012/05/29</a><ul>
890
+ <li><a class="reference internal" href="#id23">改良</a></li>
891
+ <li><a class="reference internal" href="#id24">修正</a></li>
892
+ <li><a class="reference internal" href="#id25">感謝</a></li>
893
+ </ul>
894
+ </li>
895
+ <li><a class="reference internal" href="#release-2-0-2-2012-04-29">2.0.2リリース - 2012/04/29</a><ul>
896
+ <li><a class="reference internal" href="#id26">改良</a></li>
897
+ <li><a class="reference internal" href="#id27">修正</a></li>
898
+ <li><a class="reference internal" href="#id28">感謝</a></li>
899
+ </ul>
900
+ </li>
901
+ <li><a class="reference internal" href="#release-2-0-1-2012-03-29">2.0.1リリース - 2012/03/29</a><ul>
902
+ <li><a class="reference internal" href="#id29">改良</a></li>
903
+ <li><a class="reference internal" href="#id30">修正</a></li>
904
+ <li><a class="reference internal" href="#id31">感謝</a></li>
905
+ </ul>
906
+ </li>
907
+ <li><a class="reference internal" href="#release-2-0-0-2012-02-29">2.0.0リリース - 2012/02/29</a><ul>
908
+ <li><a class="reference internal" href="#id32">改良</a></li>
909
+ <li><a class="reference internal" href="#id33">修正</a></li>
910
+ <li><a class="reference internal" href="#id34">感謝</a></li>
911
+ </ul>
912
+ </li>
913
+ </ul>
914
+
915
+ <h3>このページ</h3>
916
+ <ul class="this-page-menu">
917
+ <li><a href="../_sources/news/2.x.txt"
918
+ rel="nofollow">ソースコードを表示</a></li>
919
+ </ul>
920
+ <div id="searchbox" style="display: none">
921
+ <h3>クイック検索</h3>
922
+ <form class="search" action="../search.html" method="get">
923
+ <input type="text" name="q" />
924
+ <input type="submit" value="検索" />
925
+ <input type="hidden" name="check_keywords" value="yes" />
926
+ <input type="hidden" name="area" value="default" />
927
+ </form>
928
+ <p class="searchtip" style="font-size: 90%">
929
+ モジュール、クラス、または関数名を入力してください
930
+ </p>
931
+ </div>
932
+ <script type="text/javascript">$('#searchbox').show(0);</script>
933
+ </div>
934
+ </div>
935
+ <div class="clearer"></div>
936
+ </div>
937
+ <div class="related">
938
+ <h3>ナビゲーション</h3>
939
+ <ul>
940
+ <li class="right" style="margin-right: 10px">
941
+ <a href="../genindex.html" title="総合索引"
942
+ >索引</a></li>
943
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> &raquo;</li>
944
+ </ul>
945
+ </div>
946
+ <div class="footer">
947
+ &copy; Copyright 2009-2014, Brazil, Inc.
948
+ </div>
949
+ </body>
950
+ </html>