Post #2533365
2026-03-26 18:26 UTC
The Node API makes sure all synced Operations are persisted in a SQLite database, plus all additional state we need to keep around, like an address book, buffer to aid causal ordering, mapping of all logs to topics and so on. Later we will also store state and key material for group encryption, access control and so on here.
Replies (1)
-
@p2panda@autonomous.zone 2026-03-26 18:26
Now we have a system where we publish, sync and persist operations grouped by topics on top of any p2p network. With this data being available to us now we want to make sure to correctly process and stream it towards the application layer. For this we're borrowing many conceps from general "event streaming" theory, you might know this from NATS JetStream, Kafka or something like that, with the difference that we're not aiming for "big data centres" but decentralised and autonomous p2p networks.