Do membase providing any call back method. The requirements is as soon as a value put in to membase, a callback method should get called and it will store the data in to database or any file system. Do membase support this function or is there any other key-value store supports it.
Asked
Active
Viewed 127 times
2 Answers
0
On the new Couchbase website you now have the ability to download 1.7+ versions of Membase/Couchbase. Also, Membase has been renamed to Couchbase. 1.8.x and lower are the typical Membase architecture. 2.0 and higher versions of Couchbase provide support for documents and querying.

mikewied
- 5,273
- 1
- 20
- 32
-
My requirement is the real time asynchronous call back method (i.e) as soon as the set method called some sort of call back method that I can implement post process asynchronously – Ananth Duari Mar 10 '12 at 13:12
-
I think I typed this answer into the wrong question. Anyways, I assume you are looking for a callback on the server that you can hook into? – mikewied Mar 11 '12 at 03:05
-
We don't have any hooks api on the server so in order to do this you would have to hack the code and build it yourself. One thing you can look into though are tap streams. They will stream out all mutations in the server and by inspecting this stream you could most likely accomplish what you wanted to do with a hooks api. – mikewied Mar 11 '12 at 20:20