Ross A. Baker

Results 574 comments of Ross A. Baker

Entity Encoders will set a `Content-Length` header when they know the content length in advance. Because Multipart is full of parts with streams, and because we don't know the length...

What is the strategy for back pressure? Consumers signal demand, a la reactive streams? Or, talking about something I know little of, like Netty's channel flags? Would you want IO...

Abstracting metrics has been on my mind a lot lately. It's relatively easy to maintain counters and gauges that can be output by other systems. Histograms and load averages and...

Prior art: go-kit has a [metrics abstraction](https://github.com/go-kit/kit/tree/master/metrics). I either don't understand it or don't like it: with N metrics, one would need to pass in N parameters. I wonder about...

I'm not a WebSocket person. Is this something we'd need to refine the abstract interface for? Are cats-effect timeouts sufficient, or is this about a global timeout?

More sharing would be good. Being able to avoid copying bytes is also good. There is now a ByteBuffer based chunk in fs2-core. We should take care not to lose...

I'm not a web socket expert, but I think we should do the following: - When we get one of these frames, send a close with code 1003. - When...

Ooh, this is tricky. An implementation detail is that websockets are implemented as an HTTP fallback response (the 501) with an attribute that contains the websocket. Backends that support web...

Yes, I agree with Raas. A long time ago, I tried to create a general event stream to peer deeper into these things that happen in the backends, but the...