-
I'm submitting this issue without a minimal case so far because I have only been able to reproduce it with a specific server which requires authentication. Apologies for the lack of context. I'll try …
-
Hi Diggsey!
Thanks for sharing this interesting project. I like the async/await support and your emphasis on correctly mutating actor state.
I have a small application currently implemented in…
-
I have been experimenting the current actix's Async Context implementation, `Context`, and I've come across a characteristic that I don't know if its a bug or the expected behavior. Check the followin…
-
hi , our project is using Actix, which is really fast, however, when writing tests, I found there are many duplications in our tests code. espcially the "init server" code, e.g.
```
#[actix_rt::t…
sg552 updated
4 years ago
-
Issue: the websocket buffer per client will remain in memory and potentially continue expanding until stopping/closing the connection. This becames a major memory usage issue when sending a large amo…
-
currently we have either per request actors which is incorrect and mostly fails under heavy load, or `single-actor` which process requests sequentially
best documentation available comes from [Qitt…
-
I'm using Actix 0.7.9. I'm reading [this documentation](https://actix.rs/book/actix/sec-2-actor.html), which says the following:
> The Actor's execution state changes to the stopping state in the f…
-
I really liked your crate and wanted to test it and even migrate to it from Actix.
I tried to migrate a small part but I found two missing parts:
1. I couldn't find a way to get `ActorRef` of `A…
-
`Addr::send` will actually check if the Mailbox is full, but the future created by it uses a clone of `AddressSender`, and due to how `AddressSender::clone` is implemented, the newly cloned `AddressSe…
-
**Describe the bug**
First, a recap of the test scenario:
- start 3 nodes, 2 of them are validators
- stop the non validator
- restart the non validator with a key having the same account-id a…