Implementing a reference-count map in Rust
A reference-count map is a data structure that keeps track of how many references to an entry exist and drops it when the last reference drops.
A reference-count map is a data structure that keeps track of how many references to an entry exist and drops it when the last reference drops.
A way to make our GenServers more easy to test and maintain by using PubSub