|
|
|
|
|
by nojvek
2675 days ago
|
|
The parsed format in tape.md is quite close to the flatbuffer format. Flatbuffer can encode any json file just fine. The parse time is immediate and requires no extra memory. It’s a great way to store big json files where you only want to access a subset of data very quickly and not load the whole file into memory. https://google.github.io/flatbuffers/ |
|