Module kompact::lookup

source ·
Expand description

Data structures for looking up the dispatch/routing table.

Suggested approaches are: 1. Arc<Mutex>> 2. Some concurrent hashmap crate (check crates.io) 3. Thread-local caching backed by a slower lookup method (like Arc<Mutex<…>>) 4. Broadcast to all listeners, ensuring that the route/lookup exists in at least one of them.

Structs

  • Lookup structure for storing and retrieving DynActorRefs.

Enums

Traits