-
```rust
use std::cell::RefCell;
#[derive(Default)]
struct NotCopy;
#[derive(Default)]
struct Split {
one: Option,
two: NotCopy,
}
fn read(_: &NotCopy) {}
fn main() {
let…
-
We have some MySQL Proxy for routing requests among multiple MySQL instances, especially for read/write splitting with Master-Slave repliation. Could such kinds of proxy be also provided for HandlerS…
-
Hi, i try to convert mp4 to fragmented mp4 using crate mp4-stream and bmff.
Sample video from:
[https://storage.googleapis.com/gtv-videos-bucket/sample/ForBiggerMeltdowns.mp4](url)
Convert mp4 to r…
-
As part of the 2018 update/rewrite, I'm looking at the `std::filesystem` checking limitations.
There needs to be a good strategy to enable/use them, and at the moment I haven't yet found a good API…
-
Create a bash script "tasks.sh" which creates 5 new files for each of the 10 files previously created in
the output directory in chunks of 1 Mbp (10000000-10999999, 11000000-11999999, etc.) and result…
-
Like [tokio::io::split](https://docs.rs/tokio/latest/tokio/io/fn.split.html), tokio-uring should allow splitting things like TCP and UDP streams and perhaps Files into reader and writer halves so sepa…
-
**Describe the bug**
When `default_role = "primary"`, the requests are routed to both primary and replica nodes instead of just to the primary node.
**To Reproduce**
```
[pools.test]
pool_mode …
-
Instead of splitting files according to Tn5 barcode, add another FASTQ comment containing the barcode sequences. We can the write all the reads to the same file, and map together. Add a subsequent ste…
-
I reviewed the `ethereum` directory. The tests in this PR are meant to replicate the existing javascript tests. However, these tests need a lot of work and there should be a follow up PR that fixes th…
-
## Question
I have configured read-write splitting as shown below, intending to ensure that if one of the databases goes down, it will not affect the queries. However, during testing, I encountered…