Welcome the channel on the development of Cro, a set of libraries for building reactive distributed systems, lovingly crafted to take advantage of all the Raku Programming Language has to offer (cro.services). This channel is being logged for historical purposes.
Set by lizmat on 24 May 2021.
Geth ¦ cro-http: Altai-man assigned to jnthn Issue docker image? github.com/croservices/cro-http/issues/149 10:51
nine Did You Know...? That using Cro::HTTP::Middleware::RequestResponse's response processing leaks memory like crazy? 19:51
Cro::HTTP::Middleware::Response however does not 20:01
It seems to be the mere tapping of $connection-state.early-responses that starts the leak. Even though AFAICT nothing's ever emitted from it. 20:08
Oh, no it's not the tapping. It's the additional whenever in the supply created by Response's transformer method 20:10
Yeah, I can replace it with a whenever Supply.interval(1) { } and it will still leak. Remove that whenever block and the leak vanishes. 20:12