I need help with a common senario…..
I have a central database or datastore in some way. Then I have a bunch of Win-clients. These clients all needs a part of this data in a local datastore of some kind. They also need to update their local datastore if the central datastore is updated.
I think this must be a common senario but I cant find any simple solutions to it. Of course I can implement a pubsub system using queues or something like that. But is there another way? (hopefully simpler or at least smarter 🙂 )
CouchDB offers bi-directional replication of data and supports working in a disconnected way. Sounds like a good match for your high-level requirements.