Vasil Vasilev
Vasil Vasilev
@otto-dev Can you maybe do a run with many fibers? Like a thousand maybe? I know it's a tall ask, but it would be of tremendous help.
@otto-dev Thank you for raising this issue, truly. We should have a longer form comment soon.
> The broader question here being, what is the best way to use Cats Effect for compute-heavy, non-microservice style applications? My 2 cents on this question. I would say, don't...
And none of this is final. Work stealing is still pretty new in effect systems, especially in Scala. We have so much to learn and tune and maybe we'll teach...
The `WorkerThread#schedule` method is _only_ safe to use by the worker thread itself, due to how the `LocalQueue` is implemented. It is a single producer multiple consumer circular buffer, and...
Cats Effect 3.0.0 did not have tracing. It came with 3.2.0. The latest `fs2` 3.2.3 should be on CE 3.3.0.
https://github.com/typelevel/cats-effect/pull/2368#issuecomment-925306033
I'm interested to investigate this one, but I have a question. Can this really be considered a bug or just a misconfiguration on the part of the user? What _should_...
I'm looking at the definition of `withBodyStream` itself and to me it seems like wrong headers might be an issue. ```scala /** Sets the entity body without affecting headers such...
Is this not addressed by `connectTimeout`? ```scala final class ClientChannelFactory( bufferSize: Int = DefaultBufferSize, group: Option[AsynchronousChannelGroup] = None, channelOptions: ChannelOptions = ChannelOptions.DefaultOptions, scheduler: TickWheelExecutor = Execution.scheduler, connectTimeout: Duration = Duration.Inf)...