I'm currently using couchbase-lite inside my iOS and android application to sync down files from a database running CouchDB.
Every so often I remove files that are not longer needed, and I would like the same files to be removed from the mobile app as well, but any pull replication only pulls updates or new files, and doesnt trigger a delete on the mobile app.
Is there any way to delete documents from the mobile app that are no longer on the server DB without doing a full purge on the mobile application, and then resyncing the whole database?
_deletedflag. If you are just simply removing the value from the server then it will not be replicated. Only 'new revisions' will be replicated, which is the reason for this so-called 'tombstone revision.' - borrrden