Re: [***SPAM*** ] Re: question about class SlicePredicate

2010-06-04 Thread David Boxenhorn
It works for Random Partitioner only if you want to get all keys. 2010/6/4 Shuai Yuan > It's documented that get_range_slice() supports all partitioner in 0.6 > > Kevin > > 原始信件 > 发件人: Olivier Mallassi > 收件人: user@cassandra.apache.org > 主题: [**

Re: [***SPAM*** ] Re: question about class SlicePredicate

2010-06-03 Thread Shuai Yuan
It's documented that get_range_slice() supports all partitioner in 0.6 Kevin ??: Olivier Mallassi ??: user@cassandra.apache.org : [***SPAM*** ] Re: question about class SlicePredicate : Tue, 1 Jun 2010 13:38:03 +0200 Does it work whatever the c

Re: question about class SlicePredicate

2010-06-01 Thread Olivier Mallassi
Does it work whatever the chosen partionner? Or only for OrderPreservingPartitionner ? On Tuesday, June 1, 2010, Eric Yu wrote: > It needs a SliceRange. For example: > SliceRange range = new SliceRange(); > range.setStart("".getBytes()); > range.setFinish("".getBytes()); > range.setReversed(true)

Re: question about class SlicePredicate

2010-06-01 Thread Eric Yu
It needs a SliceRange. For example: SliceRange range = new SliceRange(); range.setStart("".getBytes()); range.setFinish("".getBytes()); range.setReversed(true); range.setCount(20); SlicePredicate sp = new SlicePredicate(); sp.setSlice_range(range); client.get_slice(KEYSPACE, KEY, ColumnParent, sp,

question about class SlicePredicate

2010-06-01 Thread Shuai Yuan
Hi all, I don't quite understand the usage of 'class SlicePredicate' when trying to retrieve a ranged slice. How should it be initialized? Thanks! -- Kevin Yuan www.yuan-shuai.info