mozilla / rkv

A simple, humane, typed key-value storage solution.
https://crates.io/crates/rkv
Apache License 2.0
310 stars 53 forks source link

Shouldn't `Arc<RwLock<Rkv>>` be `Arc<Rkv>`? #148

Closed oblique closed 5 years ago

oblique commented 5 years ago

Since all Rkv methods use &self, shouldn't Arc<RwLock<Rkv>> simplified to Arc<Rkv>? Are there any reasons RwLock is used?

oblique commented 5 years ago

Nevermind, I just saw PR #130.