Re: Design questions/Schema help

2010-07-26 Thread Mark
On 7/26/10 7:06 PM, Dave Viner wrote: AFAIK, atomic increments are not available. There recently has been quite a bit of discussion about them. So, you might search the archives. Dave Viner On Mon, Jul 26, 2010 at 7:02 PM, Mark > wrote: On 7/26/10 6:0

Re: Design questions/Schema help

2010-07-26 Thread Dave Viner
AFAIK, atomic increments are not available. There recently has been quite a bit of discussion about them. So, you might search the archives. Dave Viner On Mon, Jul 26, 2010 at 7:02 PM, Mark wrote: > On 7/26/10 6:06 PM, Dave Viner wrote: > > I'd love to hear other's opinions here... but here

Re: Design questions/Schema help

2010-07-26 Thread Mark
On 7/26/10 6:06 PM, Dave Viner wrote: I'd love to hear other's opinions here... but here are my 2 cents. With Cassandra, you need to think of the queries - which you've pretty much done. For the most popular queries, you could do something like: And then access it as: key-space.QueriesCount

Re: Design questions/Schema help

2010-07-26 Thread Dave Viner
I'd love to hear other's opinions here... but here are my 2 cents. With Cassandra, you need to think of the queries - which you've pretty much done. For the most popular queries, you could do something like: And then access it as: key-space.QueriesCounted['query-foo-bar'] = $count;

Design questions/Schema help

2010-07-26 Thread Mark
We are thinking about using Cassandra to store our search logs. Can someone point me in the right direction/lend some guidance on design? I am new to Cassandra and I am having trouble wrapping my head around some of these new concepts. My brain keeps wanting to go back to a RDBMS design. We wi