Aleksandr Antonov
Aleksandr Antonov
Would be great if bayard will support percolate queries.
### Is there an existing issue for this? - [X] I have searched the existing issues ### Summary NATS is modern message broker, used both for sync and async communications....
### What motivated this proposal? I have a dynamic bunch of tasks, which can be stored in Jetstream KV bucket. Every task have some data and should work continuously forever....
### Proposed change Apply dynamic sharding for Jetstream streams. ### Use case In general, it's very often case, when you replace one node to another, and you want to have...
### Proposed change Option per publisher, which can block or even cause a disconnection for user, spamming into NATS network. ### Use case Every time when NATS publisher is not...
### Proposed change For now, users of NATS Jetstream should manually setup subject partitioning for sharding streams. Please make declarative way to shard streams across clusters of NATS Jetstream. For...
```rust use sharded_slab::Slab; fn main() { let slab = Slab::new(); let key = slab.insert("hello world").unwrap(); println!("Key : {}!", key); let key = slab.insert("hello world").unwrap(); println!("Key : {}!", key); // value...
Replaced Strings type with FastStr, removed a lot of `to_owned()`, some autoformatting. Pull request checklist: - [x] `CHANGELOG.md` was updated, if applicable
Sometimes I got an errors like this. ``` ERROR client_loop: twitch_irc::client::event_loop: Pool connection 68 has failed due to error (removing it): Did not receive a PONG back after sending PING...
### Proposed change Add to error message some metadata, such as last sequence number. ### Use case Distributed TTL based locks, leader election systems. ### Contribution Yes.