vote up 3 vote down star
3

Are you using it or plan to use it?

flag

65% accept rate

2 Answers

vote up 2 vote down

I'm not impressed. We've been using it for 4-5 months or so by now, and it really doesn't seem to scale. We're using it to sync databases between server and clients in our application and it is just incredibly slow. Even just syncing a few thousand rows takes up to 30 seconds, and this is with all network traffic on a LAN. (And the saddest part is that even synchronizing when both sides are already up to date takes almost as long) Of course it is possible that we're doing something wrong, but my experience is just that it's too slow for anything more than small toy examples and tests.

It also handles error conditions very badly (there's no proper support for limiting packet sizes to fit within WCF's max packet size. You can use batching on server->client, but not the other way)

Coupled with the limitation that SQL Express databases aren't supported out of the box (you have to write your own syncadapter), this has really made me regret the day we chose to use it. In our case, it just hasn't been worth the hassle.

link|flag
Have you looked at the v2 CPT to check if it solved some of your issues? – Renaud Bompuis Dec 18 '08 at 9:36
Yep, no big changes that we've noticed. – jalf Dec 18 '08 at 22:35
I'm glad to read this jalf.. I've done the same with a project I am working on (a commercial product, really) and ran into many of the same issues. I've begun the specifications for the 2.0 version, and one of the large parts is to build my own Sync framework, based on manipulating the ORM objects to Xml and transferring that across the wire (maybe with compression, if I can) – Richard B May 13 at 5:08
vote up 0 vote down

I wrote a small app which syncs files between my laptop and my external hard drive. I know there are free tools available to do that but this was fun and extremely easy. (I have now made it a windows service and it keeps everything in sync behind the scene)

link|flag
Seems interesting, does it sync just over the LAN or also over the web? – Renaud Bompuis Dec 18 '08 at 9:38
Just over the LAN. – Learning Dec 19 '08 at 9:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.