Purpose of crsql_wdbreplicator
#103
-
I'm trying to build a RESTish client/server layer. I'm basing it heavily off of the WholeDbReplicator. Is the entire purpose of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yep, that's right. Completely safe to delete You might also be interested in the client-server sync reference implementation I've been working on The main difference with these is that they take more of a "streaming approach" rather than the simple "poke" approach. |
Beta Was this translation helpful? Give feedback.
Yep, that's right. Completely safe to delete
installTriggers
if you don't need to be alerted to changes in the databaseYou might also be interested in the client-server sync reference implementation I've been working on
https://vlcn.io/docs/replicators as another example of a sync implementation.
The main difference with these is that they take more of a "streaming approach" rather than the simple "poke" approach.