velocypack icon indicating copy to clipboard operation
velocypack copied to clipboard

A fast and compact format for serialization and storage

Results 34 velocypack issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi folks, A crash was found while fuzz testing of the vpack-to-json binary which can be triggered via a malformed VPACK file. Although this malformed file only crashes the program...

Just curious - has anyone tried on some project using VelocyPack as the backend storage for SQlite? Any benchmarks or experience or lessons learned?

I am trying to serialize `[1,[2]]`, but somehow the last byte is 03 instead of 02. `13 08 31 13 04 32 01 02` -- json-to-vpack (note that Parser uses...

The Graphistry team is starting to get requests from Arango db users to help grow their Arango implementations + use cases, and we're wondering if there is any guidance for...

I cloned the current master last week and followed the first directions in Install.md. Clang SIGSEGV while compiling AssertThreshold.cpp. I noted that Apple had updated XCode, so I installed that...

Problem with fuerte can be solved changing https://github.com/arangodb/velocypack/blob/d11b92ef0dacb33bc493e1cabd5d9b12ecd83908/CMakeLists.txt#L6 from set(CMAKE_CXX_STANDARD 11 CACHE STRING "target C++ standard") to set(CMAKE_CXX_STANDARD 17 CACHE STRING "target C++ standard") see: https://github.com/arangodb/fuerte/issues/27

Please note that for legal reasons we require you to sign the [Contributor Agreement](https://www.arangodb.com/documents/cla.pdf) before we can accept your pull requests. Code changes and contributions in the VelocyPack library should...

TODO - [x] Fix coverage - [x] Add switch for this feature

Is it possible to support typed arrays (packed arrays). Each element of an array is of known type and is not preceded by the byte of its type. It will...

I've been working on a velocypack parser (in Rust), and ran into some troubles parsing some output from ArangoDB: ``` 0x0c 0x73 0x01 0x12 0x00 0x00 0x00 0x00 0x00 0x4a...