Post #2533364
2026-03-26 18:26 UTC
Developers generate a Topic (random bytes) to publish messages into it and subscribe to for receiving everyone else's messages. This is PubSub!
Topics are a way to group your data, a topic is for example a Reflection text-document, or a single chess game session, or a chat room.
Later we also want to divide the space up even more into human-readable strings you can then filter with wildcards (*).
This is partial replication: You only sync the data you need.
Replies (1)
-
@p2panda@autonomous.zone 2026-03-26 18:26
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.