MemoryPack icon indicating copy to clipboard operation
MemoryPack copied to clipboard

Zero encoding extreme performance binary serializer for C# and Unity.

Results 144 MemoryPack issues
Sort by recently updated
recently updated
newest added

Hi, the [Version tolerant](https://github.com/Cysharp/MemoryPack#version-tolerant) section mentions that > MemoryPackable objects, members can be added, but not deleted I'm trying to use MemoryPack for RPC between two sides that should support...

It is impossible to serialize classes that are defined in external libraries, so it would be nice if you could provide the same information as MemoryPackUnion, but via a builder...

Already added `BitPackFormatter`, `BrotliFormatter`. We can add other compression algorithms. https://www.timescale.com/blog/time-series-compression-algorithms-explained/ https://github.com/apache/parquet-format/blob/master/Encodings.md https://docs.aws.amazon.com/redshift/latest/dg/c_Compression_encodings.html https://takuya-a.net/blog/inverted-index-compression-techniques/

I've modified the code to allow the nullable type propagation from C# to TypeScript. Also, I added a flag to keep the old behavior and enable this feature. @neuecc give...

When working with TypeScript in strict mode, the developers care about the nullability of member types. However, the current TypeScript generator doesn't take into consideration the markers in C# to...

Really cool library, nice to see modern allocation free C# code. 🚀 - Minor spelling corrections. - Edited some pargraphs. - Tried to avoid changing the formatting or the information....

Will there be integration with MagicOnion? I would like to see an example in ASP Net with zero allocation for objects of a value type, for example structures.

First, thanks for updating MemoryPack to work with .NET 7 and AOT. Unfortunately my native AOT test program (latest .NET 7) is crashing with the error below: ![image](https://user-images.githubusercontent.com/20084989/204111373-34cbba8d-a870-4047-a862-a024dc088942.png) (it works...

Currently compress after ToArray or CopyTo. But sometimes needs write compressed length to header but current API does not support it(require more copy).