Re: Double ColumnType and comparing

2011-03-14 Thread Eric Charles
Or maybe convert double to long, just as hector's DoubleSerializer does https://github.com/rantav/hector/blob/master/core/src/main/java/me/prettyprint/cassandra/serializers/DoubleSerializer.java I was happy to use it here. Tks, - Eric On 14/03/2011 02:52, aaron morton wrote: There is nothing in

Re: Is it possible to get list of row keys?

2011-03-02 Thread Eric Charles
d you got following result. keyabc key456 keydsg key8jkg keyag87 key45s ... Then if you call with setKeys("keydsg","") again, you will get following result. keydsg key8jkg keyag87 key45s ... Regards, Chen www.evidentsoftware.com <http://www.evidentsoftware.com>

Re: Is it possible to get list of row keys?

2011-03-02 Thread Eric Charles
Hi, I'm also facing the need to retrieve all row keys. What do you mean with "stable" order? From this thread, I understand paging method with RandomPartitioner will return all keys (shuffled, but missing key, no double key). This seems to have already told, but I prefer to double-check... Tks