portkey

Portkey: from REPL to Serverless in one call
qqq 2017-09-26T04:00:48.000107Z

can something like http://slither.io be built on lambda/portkey, or would the updates kill the db ?

tatut 2017-09-26T07:32:21.000038Z

wouldn’t you need server->clients push capabilities for that?

cgrand 2017-09-26T07:38:53.000107Z

That would need some lifting to make it palatable but AWS IoT allows to bridge websockets and lambda

viesti 2017-09-26T08:03:02.000203Z

which sounds interesting, should look into it

qqq 2017-09-26T08:04:05.000072Z

correct me if I'm reading https://aws.amazon.com/iot-platform/pricing/ wrong ... $5 / million msgs is expensive if a server is sending out updates 10-times-per-second, for an hour, to a server with 1000 connections, that becomes: 10 60 60 * 1000 / 1000000 = 36 million msgs, which would be $180.00 / hour

tatut 2017-09-26T10:18:52.000264Z

better off running ec2 servers then

tatut 2017-09-26T10:19:48.000044Z

lambda is not a panacea and something like running game servers that require keeping much state on the server side, is better with traditional servers

tatut 2017-09-26T10:20:17.000077Z

1000 websocket connections is not much for a simple http-kit clojure backend

viesti 2017-09-26T11:50:53.000283Z

yup