Awesome formats: jsonl
2024-08-19 00:00
Sometimes I come across things that I should have found way earlier because of how awesome it is.
One of them is jsonl. It is basically a text file where every line is an independent chunk of json data.
It is extremely useful for a bunch of reasons, like when you want to append things to a log without having to read, deserialize, update, serialize and write. Or if you want to parallelize to processing of data etc.