simdjson_dart 0.1.3
simdjson_dart: ^0.1.3 copied to clipboard
Fast JSON for Dart using the simdjson C++ library over FFI. Lazy document access for large payloads plus jsonDecode-compatible decoding.
0.1.3 #
- Example: rewrite it around the real use case. It now builds a multi-megabyte paginated payload and pulls a few fields (the page header and first record) by selective access, which is where the package is faster than a full decode, alongside the full-decode path and a rejected-input case.
0.1.2 #
- Docs: tightened the README and added an architecture diagram.
0.1.1 #
- Rename the example file to match the package name so pub.dev picks it up.
0.1.0 #
Initial release, vendoring simdjson 4.6.4.
SimdJsonDocument: parse once, materialize only the subtrees you read, addressed by RFC 6901 JSON Pointers. 5-15x faster than full decoding when reading selected fields from large documents.simdJsonDecodeBytes/simdJsonDecode: whole-document decoding with the same result shapes asjsonDecode.- Native code builds automatically via Dart build hooks (Dart 3.10+); no manual native setup.