Open
Description
opened on Oct 14, 2021
Hi, is there a way to use this library to read from file and write to file to boost performance? Can you help with an example - difficult to understand interface?
I was trying to use one of following libraries... it seems using IBufferReader
For serialize, interfaces as follows,
void Serialize<T>(IBufferWriter<byte> writer, T value);
void Serialize<T>(Stream stream, T value);
For deserialize, interfaces as follows,
T Deserialize<T>(ReadOnlyMemory<byte> buffer);
T Deserialize<T>(Stream stream);
T Deserialize<T>(ReadOnlySequence<byte> byteSequence);
Context: we were trying to serialize/deserialize large files/.net objects for which IBuffer* handling is best.
Metadata
Assignees
Labels
No labels
Activity