Client-server synchronization pattern / algorithm?

后端 未结 7 2281
醉酒成梦
醉酒成梦 2020-11-27 08:41

I have a feeling that there must be client-server synchronization patterns out there. But i totally failed to google up one.

Situation is quite simple - server is th

7条回答
  •  醉酒成梦
    2020-11-27 09:22

    For delta (change) sync, you can use pubsub pattern to publish changes back to all subscribed clients, services like pusher can do this.

    For database mirror, some web frameworks use a local mini database to sync server side database to local in browser database, partial synchronization is supported. Check meteror.

提交回复
热议问题