null+****@clear*****
null+****@clear*****
2011年 12月 29日 (木) 10:23:50 JST
Kouhei Sutou 2011-12-29 10:23:50 +0900 (Thu, 29 Dec 2011)
New Revision: 6b4df1e94536b59770aff0c5653f6e898c820f8d
Log:
[en] post release announce.
Added files:
en/_posts/2011-12-29-release.textile
Added: en/_posts/2011-12-29-release.textile (+49 -0) 100644
===================================================================
--- /dev/null
+++ en/_posts/2011-12-29-release.textile 2011-12-29 10:23:50 +0900 (66b166e)
@@ -0,0 +1,49 @@
+---
+layout: post.en
+title: Groonga 1.2.9 has been released
+---
+h2. Groonga 1.2.9 has been released
+
+"groonga 1.2.9":/ja/docs/news.html#release-1-2-9 has been released!
+
+How to install:: "Install":/docs/install.html
+
+The "characteristics of groonga page":/docs/characteristic.html is updated. Please check it out again if you already know groonga. You may find a new characteristic.
+
+h3. MessagePack support
+
+Groonga supports JSON, XML, TSV output format. Since this release, groonga also support MessagePack output format. (NOTE: Only major commands are supported. There are some minor commands are not supported yet.)
+
+If you have a problem with JSON (e.g. JSON requires large ammount data size, long parse time and so on.), please try MessagePack output. Here is an example to use MessgaePack output with HTTP interface. You just add ".msgpack" extension to path.
+
+<pre>
+http://localhost:10041/d/select.msgpack?...
+</pre>
+
+You can use "--output_type msgpack" for command line interface or gqtp interface.
+
+<pre>
+select --output_type msgpack ...
+</pre>
+
+h3. A throughput chart on administration page is added
+
+You can use groonga administration page at http://localhost:10041/ when you run groonga as a HTTP server. A real-time throughput chart has been added to the page.
+
+!/images/groonga-admin/throughput-graph.png(A throughput chart in administration page)!
+
+It will be useful when you use groonga with HTTP interface and want to knwo "the current throughput". If you want to know the past througupht, it will not be useful because the chart doesn't keep the past data. You should use other service managerment tool or statistics visualization tool.
+
+Groonga also provides a Munin plugin, groonga_throughput, that generates throughput data of groonga. It supports both HTTP interface and gqtp interface.
+
+h3. Mass delete
+
+You could only delete a record by a delete command. Since this release, you can delete some records that matches specified condition by a delete command. You can use "--filter" option for specifying condition on delete command. It uses the same syntax of "--filter" option of select command. Here is an example to delete records that has "deleted=true" column value from "users" table.
+
+<pre>
+delete users --filter 'deleted == true'
+</pre>
+
+h3. Changes
+
+Changes since 1.2.8: "Release 1.2.9 - 2011/12/29":/docs/news.html#release-1-2-9