quic-rpc icon indicating copy to clipboard operation
quic-rpc copied to clipboard

A streaming rpc system based on quic

Results 26 quic-rpc issues
Sort by recently updated
recently updated
newest added

This could be done by having - on the send and recv side, a way to obtain a flume sink or stream. For some channels, like the flume channel, this...

You should be able to associate a value with a connection so that it gets dropped if the connection gets dropped. Or in general the ability to do some sort...

at 0ccd8f5 It's probably a configuration issue but it fails first with a doc test, removing the doc tests brings up a lot of compilation issues afterwards ``` error: could...

Hi! Thank you for your great crate. I tried to use the [example](https://github.com/n0-computer/quic-rpc/tree/main/examples/split/client) with flume feature(for wasm) but can't find how to init client like in this code: ``` let...

The quinn throughput numbers are disappointing. s2n-quic seems to have a pretty high level API, so it should not be that hard to wrap it. https://github.com/aws/s2n-quic

Either write an UDS transport from scratch, or figure out how to use quinn via an unix domain socket. This is useful because an unix domain socket is easier to...

Very WIP This performs very badly for the bidi_seq part of the benchmark. Run like this: ``` cargo test s2n_quic_channel_bench --release -- --nocapture ... running 1 test RPC seq 2_030...

Currently the client will just try to connect forever when pointed to an incompatible server. Errors are being logged, but at a low level. There should be a way to...

Ok, that's a pretty rubbish title. But what we really need to be able to do is: - Signal shutdown to the server. - Server stops accepting new connections. -...

Currently the http2 transport has an into_inner only on the SendSink, because the RecvStream never sees the raw bytes. The framing and deserialization gets done in the forwarder. The recv...