Keeping a WebSocket connection alive with a serverless backend
I have a statically hosted dashboard that needs to display real-time stock prices. I want to use WebSockets, but my backend is entirely serverless functions. Since serverless functions die after the request finishes, how do you handle persistent WebSocket connections? Do I have to spin up a dedicated VPS just for the socket server?