Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 836 Bytes

2012-04-23-06-streaming-rest.md

File metadata and controls

36 lines (25 loc) · 836 Bytes

Monday Session 5: Realtime web applications with streaming REST

Presenter: Brad Gessler

State of apps

  • had REST for server backend
  • Backbone.js and Ember.js made cosuming REST API easier

Solutions

  • long pulling
    • using setInterval and cahce
    • doesn't work when you are dealing with large data streams
  • streaming

Picking a streaming layer

  • Socket.IO
    • Issue with latency
    • Routing only on channels not urls
  • Meteor
    • new and tightly coupled

Firehose.io

Take aways