pedestal

dangercoder 2020-07-06T18:12:17.302800Z

How scalable are websockets with Pedestal and Jetty? Is it fully "non-blocking"?

✅ 1
dangercoder 2020-07-06T18:27:38.303100Z

found my answer, seems to be based on nio and some issues with blocking behaviour was resolved by e.g send-async and more functions.

2020-07-06T20:24:16.303300Z

@jarvinenemil keep in mind that you have full control over how websockets are implemented. You can provide your own start fn, listener implementation if you have specific needs

dangercoder 2020-07-06T20:32:40.303500Z

thanks, i'll keep that in mind