Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "API" page has been changed by NickTelford.
The comment on this change is: Minor typos and formatting tweaks.
http://wiki.apache.org/cassandra/API?action=diff&rev1=46&rev2=47

--------------------------------------------------

  
   . `list<KeySlice> get_range_slices(keyspace, column_parent, predicate, 
range, consistency_level)`
  
- Replaces `get_range_slices`. Returns a list of slices for the keys within the 
specified `KeyRange`. Unlike get_key_range, this applies the given predicate to 
all keys in the range, not just those with undeleted matching data.  This 
method is only allowed when using an order-preserving partitioner.
+ Replaces `get_range_slice`. Returns a list of slices for the keys within the 
specified `KeyRange`. Unlike get_key_range, this applies the given predicate to 
all keys in the range, not just those with undeleted matching data.  This 
method is only allowed when using an order-preserving partitioner.
  
  === get_key_range ===
  ''Deprecated in 0.5 - use `get_range_slice` instead''
@@ -265, +265 @@

  
   . `list<TokenRange> describe_ring(keyspace)`
  
- Gets the token ring; a map of ranges to host addresses. Represented as a 
`set` of `TokenRange` instead of a map from range to list of endpoints, because 
you can't use Thrift structs as map keys: 
https://issues.apache.org/jira/browse/THRIFT-162 for the same reason, we can't 
return a set here, even though order is neither important nor predictable.
+ Gets the token ring; a map of ranges to host addresses. Represented as a set 
of `TokenRange` instead of a map from range to list of endpoints, because you 
can't use Thrift structs as map keys: 
https://issues.apache.org/jira/browse/THRIFT-162 for the same reason, we can't 
return a set here, even though order is neither important nor predictable.
  
  === describe_keyspace ===
  ''Requires Cassandra 0.6''

Reply via email to