0

I am retrieving some data by means of GetView. But while performing some update operation i m getting latency. Can this be avoided using CAS or is there any other options available..

Thanks

Xavier
  • 1,672
  • 5
  • 27
  • 46
  • Can you be more specific on what your doing and maybe include a code snippet? – mikewied Nov 01 '12 at 16:47
  • I just need to perform some update operation. For example.. In my page if the user clicks like then his details should be updated in the couchbase bucket. I have tried my code.. for details pls check http://stackoverflow.com/questions/13190217/update-in-couchbase – Xavier Nov 02 '12 at 06:15

1 Answers1

1

CAS is used to maintain consistency between get and set operations. You can't reduce latency with CAS.

kolchanov
  • 2,018
  • 2
  • 14
  • 32