issues
search
databendlabs
/
jsonb
JSONB implement in rust
Apache License 2.0
65
stars
11
forks
source link
Feat: improve json path selector using less memory
#24
Closed
b41sh
closed
1 year ago
b41sh
commented
1 year ago
improve json path selector using less memory
The
Selector
records the
Position
of the value in the original value during the query process to avoid storing temporary data allocation memory.
The result data is placed directly into the builder's buffer to avoid storing result data allocation memory.
improve json path selector using less memory
Selector
records thePosition
of the value in the original value during the query process to avoid storing temporary data allocation memory.