docs.rs failed to build exocortex-cache-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Lock-free readers, single-writer coordination. The graph itself is a petgraph::StableGraph wrapped in ArcSwap so the read side never blocks.
ยง8: LocalCache holds one GraphSnapshot per org behind
an ArcSwap<GraphSnapshot>; readers load_full() (a refcount bump) and
scan a consistent view. The single writer reuses reader-released snapshot
buffers, catches them up from a bounded delta journal, and publishes a fresh
immutable generation. 2Q admission governs which org graphs stay resident
under the byte budget (R-M12/R-M13).