This commit is contained in:
Alain Zscheile 2022-11-30 19:25:33 +01:00
parent a494dd4517
commit 77510e7896

16
WIP/GOALS.txt Normal file
View file

@ -0,0 +1,16 @@
The goal is basically to find a way to semi-automatically build
a relay structure for queues, in an attempt to supplement ActivityStreams
with a relay infrastructure to reduce maximum per-node load.
A good primer on the subject is https://gist.github.com/jdarcy/60107fe4e653819138396257df302eef
which introduces the problem the current RPC interface is causing
for ActivityStreams caching.
It appears to me that I basically want the combination of
* BitTorrent, but with queues instead of constant files (meaning that I need to
deal with queue positions and slices, and that the queue can grow on one end,
and vanish of the other)
* [episub](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/episub.md)
(libp2p's epidemic pubsub protocol, but with persistence/resume, so that
you don't loose all changes if you're offline (you just loose the ones which
were so old they scrolled out of the round-robin spool db))