Expand description
simd-json is a rust port of the simdjson c++ library. It follows most of the design closely with a few exceptions to make it better fit into the rust ecosystem.
Note: by default rustc will compile for compatibility, not
performance, to take advantage of the simd part of simd json. You
have to use a native cpu target on a avx2 capable host system. An
example how to do this can be found in the .cargo
directory on
github.
Goals
the goal of the rust port of simdjson is not to create a one to one copy, but to integrate the principles of the c++ library into a rust library that plays well with the rust ecosystem. As such we provide both compatibility with serde as well as parsing to a dom to manipulate data.
Performance
As a rule of thumb this library tries to get as close as possible to the performance of the c++ implementation, but some of the design decisions - such as parsing to a dom or a tape, weigh ergonomics over performance. In other places Rust makes it harder to achieve the same level of performance.
Safety
this library uses unsafe all over the place, and while it leverages quite a few test cases along with property based testing, please use this library with caution.
Features
simd-json.rs comes with a number of features that can be toggled,
the following features are intended for ‘user’ selection. Additional
features in the Cargo.toml
exist to work around cargo limitations.
swar-number-parsing
(default)
Enables a parsing method that will parse 8 digests at a time for floats - this is a common pattern but comes as a slight perf hit if all the floats have less then 8 digits.
serde_impl
(default)
Compatibility with serde. This allows to use simd-json.rs to deserialize serde objects as well as serde compatibility of the different Value types. This can be disabled if serde is not used alongside simd-json.
128bit
Support for signed and unsigned 128 bit integer. This feature is disabled by default as 128 bit integers are rare in the wild and parsing them comes as a performance penalty due to extra logic and a changed memory layout.
known-key
The known-key feature changes hasher for the objects, from ahash to fxhash, ahash is faster at hashing and provides protection against DOS attacks by forcing multiple keys into a single hashing bucket. fxhash on the other hand allows for repeatable hashing results, that allows memorizing hashes for well know keys and saving time on lookups. In workloads that are heavy at accessing some well known keys this can be a performance advantage.
Usage
simd-json offers two main entry points for usage:
Values API
The values API is a set of optimized DOM objects that allow parsed json to JSON data that has no known variable structure. simd-lite has two versions of this:
Borrowed Values
use simd_json;
let mut d = br#"{"some": ["key", "value", 2]}"#.to_vec();
let v: simd_json::BorrowedValue = simd_json::to_borrowed_value(&mut d).unwrap();
Owned Values
use simd_json;
let mut d = br#"{"some": ["key", "value", 2]}"#.to_vec();
let v: simd_json::OwnedValue = simd_json::to_owned_value(&mut d).unwrap();
Serde Compatible API
use simd_json;
use serde_json::Value;
let mut d = br#"{"some": ["key", "value", 2]}"#.to_vec();
let v: Value = simd_json::serde::from_slice(&mut d).unwrap();
Re-exports
pub use crate::serde::from_reader;
pub use crate::serde::from_slice;
pub use crate::serde::from_str;
pub use crate::Result;
pub use crate::value::*;
pub use crate::tape::Node;
pub use crate::tape::Tape;
Modules
Reexport of Cow Reexport of Cow
Default trait imports;
serde related helper functions
simd-json JSON-DOM value
Macros
Taken from: https://github.com/serde-rs/json/blob/5b5f95831d9e0d769367b30b76a686339bffd209/src/macros.rs
Construct a simd_json::Value
from a JSON literal.
Adapted from: https://github.com/serde-rs/json/blob/5b5f95831d9e0d769367b30b76a686339bffd209/src/macros.rs
Constructs a simd_json::Value
from a JSON literal and allows specifying whether it generates
an owned or borrowed variant.
possible compiler hint that a branch is likely
static cast to an i8
static cast to an i32
static cast to an i64
static cast to an i64
static cast to an u32
static cast to an u64
FROM serde-json We only use our own error type; no need for From conversions provided by the standard library’s try! macro. This reduces lines of LLVM IR by 4%.
possible compiler hint that a branch is unlikely
Structs
SIMD aligned buffer
Deserializer struct to deserialize a JSON
Parser error
Enums
Error types encountered while parsing
Static tape node
Types of JSON values
Functions
Write a value to a string
Write a value to a string
Creates a tape from the input for later consumption
Write a value to a vector
Write a value to a vector
Write a value to a string
Write a value to a string
Type Definitions
simd-json Result type