rchain-community / rgov

RChain liquid democracy demo: capability sharing, mailbox, directory, chat, ...
https://rchain-community.github.io/rgov/
10 stars 14 forks source link

Implement TreeHashMap in MemberDirectory.rho #166

Closed Bill-Kunj closed 3 years ago

Bill-Kunj commented 3 years ago

Currently, MemberDirectory.rho uses a standard rholang map. This is fine for testing and development, but the "real" deployment on mainnet will ultimately involve many more members. A re-implementation using TreeHashMap will perform better in the long run.

Bill-Kunj commented 3 years ago

This issue needs design-time decisions. TreeHashMap has built-in design limitations on depth vs. breadth.

Bill-Kunj commented 3 years ago

TreeHashMap is changed/changing. Since RGOV does not require TreeHashMap to be functional, I'm closing.