-
## Feature Request
### Motivation
There are times we don't have owned buffers but only have references to them. However the current `Codec` trait has a `'static` bound on the items being encoded…
-
Hey!
Cool little crate! I just glimpsed over the source code but you can probably make the library zero-copy by using `&'a str` inside of the `Node` struct instead of Strings. This would allow for …
-
I couldn't find anything in the docs or the code that confirmed this question, so I figured I would ask. I would have asked in the Slack but the invite link is broken.
Does Snabb provide zero-copy …
-
I see that you unconditionally use [zero-copy and message tracking](https://github.com/philipbergen/zero/blob/master/py/zero/__init__.py#L440) when you send messages, and only use the tracker as a sor…
minrk updated
11 years ago
-
Right now, Bottle directly calls cgi.FieldStorage to parse incoming data.
cgi.FieldStorage has a 'make_file' method defined with the following comment:
```
def make_file(self, binary=None):
"""O…
-
The structure of chunkable data type aligns well with a stream. For example, the current DataFrame is chunked into record_batches. When opening the dataframe into a dataframe stream, each record_batch…
-
It might be possible to do some zero-copy encoding or decoding, especially of the publish payload. `Bytes` can do some refcounting behind the scene, so if we switch publish.payload from a `Vec` to a `…
-
```
Have you considered avoiding copying 'bytes' fields by just pointing to the
parsed buffer rather than copying it? I realize this would have to be an option
or a new interface, since this would m…
-
Currently, codegen supports three different forms of ZC codegen
rust.grpc_slices=true
rust.zero_copy=true
rust.blob=true
Analyze/understand why these are here and what they are, and potentiall…
-
I am using uv to control my python version, great stuff. I create a venv using uv `uv venv --python ...` and uv will install whatever version I requrest. Works great.
I am also using an internal py…