Use Matrix as forum database #11
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This would solve what is probably the current biggest problem with the implementation: the single point of failure for forum storage (LevelDB).
Write to forum => Send Matrix event
Read from forum => Read Matrix event
We don't get to pick the
eventId
for matrix events, so we'll either need to use the matrix event ID as the post ID, or do something more complicated like storing our Post ID as an event property or relation and using that to query.