dwyl/learn-aws-lambda
Auf GitHub ansehenHow do we simulate "Real Time" interaction without WebSockets ?
Open
#32 geöffnet am 28. Jan. 2016
help wantedquestion
Repository-Metriken
- Stars
- (1.037 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 16m) (1 gemergte PR in 30 T)
Beschreibung
WebSockets allow us to stream additional data from/to client/server beyond the limits of http request/response. This has opened a world of Real Time apps. Given that keeping Lambda functions running for long time will cost a lot (because we are billed per 100ms) we need to consider an alternative approach for sending data to the client after the initial page/data is rendered...
_Polling_?