Matěj Laitl

Results 41 comments of Matěj Laitl

My workaround was to add add `#[serde(deserialize_with = "..."]` to all `f64` fields. Cumbersome and not applicable for all cases, but concise for the simple ones: ```rust #[derive(Serialize, Deserialize)] pub...

Hi @jar2333, thanks for your contribution! I haven't yet reviewed the code, but this looks like a useful addition. Let's first see if @slightknack (the founder of this crate) is...

Hi @xiangxud, could be please provide more context/rationale for this issue?

@facetious good idea! If you want to take a stab at implementation, patches are welcome!

Perhaps one of the examples could be adapted as a simple benchmark. Sending one small message across the system to measure latency. Send a longer stream of bigger messages, measure...

Let's call this done, we now have various actor "shape" benches plus a pub/sub bench.

I deliberately used circular actor system in the [echo example](https://github.com/tonarino/actor/pull/28) to witness this. It feels less natural than spawning linear actors, but not horrible. It is impossible to "forget about...

Would this mean providing something more than just NoopMetricsHandler, or perhaps even more thorough changes? I'm on the fence, it could be the case that "easy" use-cases don't care about...

I presume this would mean: support actors whose `handle()` is an `async fn`, i.e. support for actors that run an async runtime in their thread. It seems that Actix also...

Feels like a good time to merge this? The transition period has been long already. CC @mcginty. @alerque would you mind rebasing on current `main`? The PR still applies, but...