From 528d5acef524f5c98ec0e9748f2d1abb098a0aa7 Mon Sep 17 00:00:00 2001 From: Ed Guloien Date: Fri, 29 May 2026 16:58:06 -0400 Subject: [PATCH] added note about RwLock --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 0ce90ff..c20abb4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -161,6 +161,7 @@ struct BlobManager { // Also note RwLock (create) starvation might be a concern if caller is // append/read heavy due to platform-defined fairness // todo: better approach? + // RwLock benefits shrink as create traffic becomes heavy } // todo: blob indexing is left up to the caller maybe add ID generator