Closed vdj69 closed 4 years ago
How can I replicate/sync?
Hi @vdj69 - this (python-cloudant) library can control replication documents on the server (i.e. configuring server mediated replications) via the Replicator
class, but it does not have a sync capability. Cloudant has libraries for iOS and Android that are able to sync with Cloudant/CouchDB. PouchDB is also a popular option in the CouchDB ecosystem.
I want this app to work in continuous replication
In general mobile applications don't do "continuous replication" in the way a server does because of the drain on the device. You can see some discussion on this here. The usual pattern is to configure replications to be controlled by events (such as network connecting).
need help to do the below use case in the best possible way
Complete app design is outside the scope of an issue here. If you are an IBM Cloudant or Support for CouchDB customer you can email support@cloudant.com to setup an engagement with our Client Architecture team for more help designing your application. If you are not a customer then I'd recommend the CouchDB slack or users mailing list to have discussions with the wider CouchDB community about best-practices for this type of application.
@ricellis : Thanks :)
Hi there! I'm new to couchDB and need help to do the below use case in the best possible way:
Use Case: There will be a single database and in that database, there will be multiple multiple documents like:
Applications There will be:
AIM I want this app to work in continuous replication and offline when there will be no network. As there will 1000's of record so want to do the following thing:
How can I replicate/sync? Suggestions and examples are welcome..