mgoldenberg
mgoldenberg
@mgcox2: I tried and tried, but to no avail. If you manage to find a solution, do let me know.
@mgcox2: the problem I had was not due to a priority issue as far as I can tell. It isn't that I want `t1` scheduled as opposed to `t2`. It...
Unfortunately, I never did. I had started digging through the source, but then I got bored... alas.
By the way, I did see [there was some desire for this at some point](https://github.com/tokio-rs/prost/issues/375#issuecomment-727009305), but figured it might be worth bringing up in a separate issue in case things...
Interestingly, `Sink::feed()` seems to be consistent with the documentation (see [here](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=bf5782eb361e2ab4436bcc446ae4a1f3), copied below for ease of viewing). ```rust use futures::{self, StreamExt, SinkExt}; // 0.3.27 #[tokio::main] async fn main() { let...
A quick comment about the [`IndexedKeyComponentBounds`](https://github.com/matrix-org/matrix-rust-sdk/blob/2f0d2e466d706c9b3f69c15f73caa7e35e798165/crates/matrix-sdk-indexeddb/src/event_cache_store/serializer/traits.rs#L107) and [`IndexedKeyBounds`](https://github.com/matrix-org/matrix-rust-sdk/blob/2f0d2e466d706c9b3f69c15f73caa7e35e798165/crates/matrix-sdk-indexeddb/src/event_cache_store/serializer/traits.rs#L78) traits to help clarify some things. The `IndexedKeyComponentBounds` helps to specify the upper and lower bounds of the components that are used...
> I was wondering: can we add tests for this? Or is it for a next PR? So, in my branch with all the changes, I only have tests of...
Apologies about the amount of code I've pasted into this issue... I wasn't sure how to best illustrate the problem and thought that a link to the crate might not...
> I wonder why we would need a struct holding all the stores. We don't have that for SQLite nor in-memory stores. Why is it important here? I was mostly...