Reputation: 4229
I'm building a POS (point-of-sale) application that will include a local Windows application (the POS) and a central web application (for configuration and reports). I want to find out if Microsoft Sync Framework is the right technology to sync the data across the local and central databases.
Components
Sync
Concerns
Is Sync Framework handle the right tool for this job?
Will it handle my concerns?
What gotchas should I be aware of?
Should I consider anything else?
Upvotes: 1
Views: 549
Reputation: 7860
Sync Fx is still supported today, unfortunately, there has been no active development on it for the last couple of years.
With Sync Fx (or any other sync mechanisms), its not just the number of nodes that affects the performance, you also have the volume of data, frequency of sync, conflicts, etc...
No, Sync Fx doesn't handle schema changes.
You may also want to check out SQL Replication. I have used both Sync Fx and SQL replication and both of them will require some tuning to handle the scale you're looking at.
Upvotes: 2