Re: Re : last record rowId

2011-06-19 Thread aaron morton
in cassandra database? > B.R > > De : Jonathan Ellis > À : user@cassandra.apache.org > Cc : karim abbouh > Envoyé le : Mercredi 15 Juin 2011 18h05 > Objet : Re: last record rowId > > You're better served using UUIDs than numeric row IDs for surrogate > keys.

Re : last record rowId

2011-06-17 Thread karim abbouh
is there any way to remember the keys (rowId) inserted in cassandra database? B.R De : Jonathan Ellis À : user@cassandra.apache.org Cc : karim abbouh Envoyé le : Mercredi 15 Juin 2011 18h05 Objet : Re: last record rowId You're better served using UUIDs

Re: last record rowId

2011-06-15 Thread Jonathan Ellis
You're better served using UUIDs than numeric row IDs for surrogate keys. (Of course natural keys work fine too.) On Wed, Jun 15, 2011 at 9:16 AM, Utku Can Topçu wrote: > As far as I can tell, this functionality doesn't exist. > > However you can use such a method to insert the rowId into anothe

Re: last record rowId

2011-06-15 Thread Utku Can Topçu
As far as I can tell, this functionality doesn't exist. However you can use such a method to insert the rowId into another column within a seperate row, and request the latest column. I think this would work for you. However every insert would need a get request, which I think would be performance