1 unstable release

0.1.4 Aug 29, 2024

#101 in Caching

Download history 382/week @ 2024-08-28 414/week @ 2024-09-04 401/week @ 2024-09-11

1,197 downloads per month

MIT/Apache

555KB
5K SLoC

ijson

This is a temporary fork of ijson for feldera while waiting for upstream patches to be submitted and merged. Do not use.


lib.rs:

This crate offers a replacement for serde-json's Value type, which is significantly more memory efficient.

As a ballpark figure, it will typically use half as much memory as serde-json when deserializing a value and the memory footprint of cloning a value is more than 7x smaller.

The primary type exposed by this crate is the IValue type. It is guaranteed to be pointer-sized and has a niche (so Option<IValue> is also guaranteed to be pointer-sized).

Cargo features:

  • ctor A global string cache is used when interning strings. This cache is normally initialized lazily on first use. Enabling the ctor feature will cause it to be eagerly initialized on startup. There is no performance benefit to this, but it can help avoid false positives from tools like mockalloc which try to detect memory leaks during tests.

Dependencies

~4.5–10MB
~114K SLoC