velocypack
velocypack copied to clipboard
A fast and compact format for serialization and storage
I am trying to compile a library that links to velocypack for windows using MSVC (Visual Studio) complier but I get linking errors due to the static vs dynamic symbols...
I'm trying to debug some output returned by the velocystream protocol, which consists of multiple velocypacks (header plus response body). Parsing this with the `vpack-to-json` tool only decodes the first...
I was wondering what would be the best way to perform input validation to avoid buffer overflows. For instance, if the application receives a 10-byte message that is a binary...
Insn't the goal of VPack similiar to the DER encoding of ASN.1? What are the pros and cons comparing VPack to DER encoding of ASN.1, which is a standard that...
For arrays without index tables I can see no benefit in allowing the optional padding after the length. It adds complexity to both the encoder (if it wants to use...
The repository https://github.com/miloyip/nativejson-benchmark contains a benchmark suite for various C/C++-based JSON parsers and generators. It would be nice to get VelocyPack into that list so its performance can be compared...
Hi I want to change .NET client protocol to use VelocyStream with [velocypack.net](https://github.com/ra0o0f/velocypack.net). is there any document for VelocyStream or i should look at java implementation?
Hello, I have submitted a pull request to implement logical types + some minor improvements -- #34. Please review it and let me know if you plan merging it.
Is there a Python binding to this library? If not, can we add one?
I was thinking about using your specification to improve my at best mediocre golang skills. It would be nice, if there was a test suite, like a bunch of json...