dwyl/learn-aws-lambda
How do we simulate "Real Time" interaction without WebSockets ?
开放
#32 创建于 2016年1月28日
help wantedquestion
仓库指标
- 星标
- (1,037 个星标)
- PR 合并指标
- (平均合并 16分钟) (30 天内合并 1 个 PR)
描述
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_?