Expand description
Main implementation of a JSONPath query engine.
Core engine for processing of JSONPath queries, based on the Stackless Processing of Streamed Trees paper. Entire query execution is done without recursion, with an explicit minimal stack, linearly through the JSON structure, which allows efficient SIMD operations and optimized register usage.
Structsยง
- Main
Engine - Main engine for a fixed JSONPath query.