Re: multiget_slice using CQL3

2013-02-14 Thread Drew Kutcharian
Thanks Edward. I assume I can still do a column slice using WHERE in case of wide rows. I wonder if the multiget count is the only thing that you can do using thrift but not CQL3. On Feb 14, 2013, at 6:35 PM, Edward Capriolo wrote: > The equivalent of multget slice is > > select * from table

Re: multiget_slice using CQL3

2013-02-14 Thread Edward Capriolo
The equivalent of multget slice is select * from table where primary_key in ('that', 'this', 'the other thing') Not sure if you can count these in a way that makes sense since you can not group. On Thu, Feb 14, 2013 at 9:17 PM, Michael Kjellman wrote: > I'm confused what you are looking to do.

Re: multiget_slice using CQL3

2013-02-14 Thread Michael Kjellman
I'm confused what you are looking to do. CQL3 syntax (SELECT * FROM keyspace.cf WHERE user = 'cooldude') has nothing to do with thrift client calls (such as multiget_slice) What is your goal here? Best, michael On 2/14/13 5:57 PM, "Drew Kutcharian" wrote: >Hi Guys, > >What's the syntax for mu

multiget_slice using CQL3

2013-02-14 Thread Drew Kutcharian
Hi Guys, What's the syntax for multiget_slice in CQL3? How about multiget_count? -- Drew