Introducing Firebase Hosting
71–79 of 79 posts
Re: Introducing Firebase Hosting
#72Hi i'd be interested to know what kind of db your using under the hood,just curious are there any technical articles about it? thanks.
Re: Introducing Firebase Hosting
#73Re: Introducing Firebase Hosting
#74Re: Introducing Firebase Hosting
#75I've built some client / server syncing code for a while, and never wondered to check for papers on that subject ( since i did it in a wqy specific to my model each time). What those guys are doing seem quite generic. Are there any famous algorithms for multi end-point data syncing ? I suppose it's related to the ditributed database research field...
Most real-time frameworks like Wave and Derby use Operational Transformation. http://www.waveprotocol.org/whitepapers/operational-transfor... http://blog.derbyjs.com/2013/06/04/derby-v0-dot-5-0/ (Edit: Apparently Meteor does not use OT; yet another reason it's behind Derby.)
Re: Introducing Firebase Hosting
#76I've built some client / server syncing code for a while, and never wondered to check for papers on that subject ( since i did it in a wqy specific to my model each time). What those guys are doing seem quite generic. Are there any famous algorithms for multi end-point data syncing ? I suppose it's related to the ditributed database research field...
Also google CRDT
Re: Introducing Firebase Hosting
#77Earlier quoted context omitted.
Most real-time frameworks like Wave and Derby use Operational Transformation. http://www.waveprotocol.org/whitepapers/operational-transfor... http://blog.derbyjs.com/2013/06/04/derby-v0-dot-5-0/ (Edit: Apparently Meteor does not use OT; yet another reason it's behind Derby.)
What are the other reasons it's behind Derby?
Re: Introducing Firebase Hosting
#78Re: Introducing Firebase Hosting
#79How do integrate business logic on the back end ? Do we implement EventSource / Server-Sent Events protocol and have a server on our back end that is basically the logic server ? Also have any one done a C# wrapper for your REST layer ?