events.jsonl is the ideal Nostr archival format.
It's just one Nostr event (JSON object) per line.
That's what Citrine and Voyage use
Please Login to reply.
Interesting. For efficiency purposes?
Yes, you can't read a full json file inside an app and convert it to a object because of memory limitations
Using jsonl you just read line by line and convert it
Got it. Thanks for the explainer!