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
perf(config): optimize chroma style loading for better concurrency
- replace `sync.Mutex` with `sync.RWMutex` to allow concurrent reads
- implement double-checked locking pattern in `GetChromaStyle`
- move heavy i/o operations outside of critical sections
- minimize lock duration by protecting only registry access
- add race condition prevention with second existence check
0 commit comments