Re: Resetting a counter in CQL

2014-03-02 Thread Clint Kelly
>> On Fri, Feb 28, 2014 at 4:32 PM, Clint Kelly wrote: >> >>> Folks, >>> >>> What is the best known method for resetting a counter in CQL? Is it >>> best to read the counter and then increment it by a negative amount? Or to >>> delete the row

Re: Resetting a counter in CQL

2014-03-02 Thread Clint Kelly
have been fixed ? >>> >>> regards >>> >>> >>> On Fri, Feb 28, 2014 at 4:32 PM, Clint Kelly wrote: >>> >>>> Folks, >>>> >>>> What is the best known method for resetting a counter in CQL? Is it >>>> b

Re: Resetting a counter in CQL

2014-03-01 Thread Edward Capriolo
checked if all the issues with counters have been fixed ? >> >> regards >> >> >> On Fri, Feb 28, 2014 at 4:32 PM, Clint Kelly wrote: >> >>> Folks, >>> >>> What is the best known method for resetting a counter in CQL? Is it >>> best to

Re: Resetting a counter in CQL

2014-03-01 Thread Tupshin Harper
t; regards > > > On Fri, Feb 28, 2014 at 4:32 PM, Clint Kelly wrote: > >> Folks, >> >> What is the best known method for resetting a counter in CQL? Is it best >> to read the counter and then increment it by a negative amount? Or to >> delete the row and t

Re: Resetting a counter in CQL

2014-03-01 Thread Manoj Khangaonkar
, Feb 28, 2014 at 4:32 PM, Clint Kelly wrote: > Folks, > > What is the best known method for resetting a counter in CQL? Is it best > to read the counter and then increment it by a negative amount? Or to > delete the row and then increment it by zero? > > These are the two me

Re: Resetting a counter in CQL

2014-02-28 Thread Clint Kelly
Great, thanks! On Fri, Feb 28, 2014 at 4:38 PM, Tyler Hobbs wrote: > > On Fri, Feb 28, 2014 at 6:32 PM, Clint Kelly wrote: > >> >> >> What is the best known method for resetting a counter in CQL? Is it best >> to read the counter and then increment it by

Re: Resetting a counter in CQL

2014-02-28 Thread Tyler Hobbs
On Fri, Feb 28, 2014 at 6:32 PM, Clint Kelly wrote: > > > What is the best known method for resetting a counter in CQL? Is it best > to read the counter and then increment it by a negative amount? Do this. > Or to delete the row and then increment it by zero? > Don&#x

Resetting a counter in CQL

2014-02-28 Thread Clint Kelly
Folks, What is the best known method for resetting a counter in CQL? Is it best to read the counter and then increment it by a negative amount? Or to delete the row and then increment it by zero? These are the two methods I could come up with. Both of these seem fine to me---I'm