Replies: 2 comments
-
I think it is useful in a scenario where a catalogue is to be made |
Beta Was this translation helpful? Give feedback.
0 replies
-
@Mimetis for us, we need full syncing capabilities because some business logic that can change data lies on the mobile app and some lives on the server. But this very neat and certainly can be useful in some scenarios that we haven't thought of yet :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As a sample, I've created two new providers, to demonstrate how to create your own provider, based on the ones already available.
These 2 providers are
SqliteSyncDownloadOnlyProvider
andSqlSyncDownloadOnlyProvider
.You can see the implementation of these 2 providers here : Custom Providers sample
Basically, they are:
SyncDirection=UploadOnly
on each table (it's by design).Since client will never upload data, we are less dependent to tracking rows.
So far:
scope_info
table is still needed and is still created.Less infrastructure, less complex commands means: better performances.
I've made 2 tests. Server is already provisioned. So far, the total duration is only due to client workload.
Here is 2 tests:
SqlSyncDownloadOnlyProvider
SqlSyncProvider
Question: Is it something interesting for you guys ?
Beta Was this translation helpful? Give feedback.
All reactions