merge with 0.6 branch

git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@915602 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Evans 2010-02-24 00:05:43 +00:00
parent d2127c7c80
commit 03278afe59
3 changed files with 12 additions and 1 deletions

View File

@ -27,6 +27,7 @@ Configuraton
to occur after the specified number of operations.
- Like MemtableSizeInMB, BinaryMemtableSizeInMB has been replaced by
BinaryMemtableThroughputInMB.
- Replication factor is now per-keyspace, rather than global.
Thrift API
----------
@ -34,6 +35,10 @@ Thrift API
- added batch_mutate meethod
- deprecated multiget and batch_insert methods in favor of
multiget_slice and batch_mutate, respectively
- added ConsistencyLevel.ANY, for when you want write
availability even when it may not be readable immediately.
Unlike CL.ZERO, though, it will throw an exception if
it cannot be written *somewhere*.
JMX metrics
-----------

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
cassandra (0.6.0~beta2-1) unstable; urgency=low
* New beta release.
-- Eric Evans <eevans@apache.org> Tue, 23 Feb 2010 17:55:17 -0600
cassandra (0.5.0-1) unstable; urgency=low
* New stable release.

View File

@ -50,7 +50,7 @@ public class FBUtilities
public static final BigInteger TWO = new BigInteger("2");
private static InetAddress localInetAddress_;
private static volatile InetAddress localInetAddress_;
public static String[] strip(String string, String token)
{