Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Wondering if Riak has anything that would help one synchronize data between a mobile and web application?

i.e. when a user ads a record or updates a record on their phone/web, it would be easy for the application developer to detect the data is out of sych. and cause a refresh of the data displayed.

I have heard couchdb has something, but I'm still investigating my options.

share|improve this question

2 Answers

up vote 1 down vote accepted

Riak has commit hooks, where you can test if a value is being changed.

As for CouchDB, I believe you're talking about the Changes API.

share|improve this answer

Trifork is a partner of Basho, the makers of Riak, and we have made something we call the Riak Sync protocol.

Riak Sync is basicly a bucket synchronization protocol between a Riak cluster somewhere on the internet and a mobile device - or multiple mobile devices. It is based on Merkle trees, and parallel connections, and is quite effecient.

You can see an overview of Riak Sync in this presentation:

http://gotocon.com/dl/goto-aarhus-2011/slides/KrestenKrabThorup_BringingRiakToTheMobilePlatform.pdf

I believe we also have implementations of Riak Sync for the Riak server - obviously - as well as different mobile devices.

Don't hessitate to contact me, if you are interested in using Riak Sync. I can dig some more info up.

share|improve this answer
what is license of RiakSync and RiakMobile? Can RiakSync can be used on open source edition of Riak? – MHK Aug 20 '12 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.