You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
store: Replace std::sync::RwLock with parking_lot::RwLock in store_events
Replace std::sync::RwLock with parking_lot::RwLock in the
SubscriptionManager to reduce lock contention. parking_lot's RwLock
is faster for short-held locks due to efficient spinning before
parking, which helps reduce tokio threadpool contention.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments