You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zaino's internal mempool will need to be able to serve a large number of clients concurrently. For this reason a simple broadcast may not be the best approach. We require lock free read access from an arbitrary number of client tasks and clone free update of the channel.
One possible approach is to use evmap (or possible dashmap) as a lock free map and either a broadcast or watch to alert listeners of updates.
This should be build so it can be used for any efficient broadcast streams required in Zaino (eg. the non-finalised state in #122)
The text was updated successfully, but these errors were encountered:
Zaino's internal mempool will need to be able to serve a large number of clients concurrently. For this reason a simple broadcast may not be the best approach. We require lock free read access from an arbitrary number of client tasks and clone free update of the channel.
One possible approach is to use evmap (or possible dashmap) as a lock free map and either a broadcast or watch to alert listeners of updates.
This should be build so it can be used for any efficient broadcast streams required in Zaino (eg. the non-finalised state in #122)
The text was updated successfully, but these errors were encountered: