Actually, if you want to get ALL keys, I believe you can still use RangeSliceQuery with RP.
Just use setKeys("","") as first batch call. Then use the last key from previous batch as startKey for next batch. Beware that since startKey is inclusive, so you'd need to ignore first key from now on. Keep going until you finish all batches. You will know you'd need to stop when setKeys(key_xyz,"") return you only one key. This should get you all keys even with RP. Regards, Chen www.evidentsoftware.com On Wed, Feb 23, 2011 at 8:23 AM, Norman Maurer <nor...@apache.org> wrote: > query per ranges is only possible with OPP or BPP. > > Bye, > Norman > > > 2011/2/23 Sasha Dolgy <sdo...@gmail.com>: > > What if i want 20 rows and the next 20 rows in a subsequent query? can > this > > only be achieved with OPP? > > > > -- > > Sasha Dolgy > > sasha.do...@gmail.com > > > > On 23 Feb 2011 13:54, "Ching-Cheng Chen" <cc...@evidentsoftware.com> > wrote: > > >