cberner / redb

An embedded key-value database in pure Rust
https://www.redb.org
Apache License 2.0
3.38k stars 157 forks source link

Fix leak in read cache tracking #872

Closed cberner closed 1 month ago

cberner commented 1 month ago

A race could cause the read cache tracking to overcount, eventually evicting the entire read cache, and degenerating into always reading from disk.

Fixes #870