summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Danford <jordandanford@gmail.com>2024-02-15 10:48:08 -0700
committerZaidoon Abd Al Hadi <43054535+zaidoon1@users.noreply.github.com>2024-02-20 19:25:26 -0500
commit8ac16781d1cca0fca6aff3938acca3638beedddc (patch)
treedfab7db1a0fe9f5aa56d692ceacd78512776f455
parent6db18ff816a406d58ac838481b658399f6deb706 (diff)
More README.md fixes
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 6956328..4b6851b 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ git submodule update --init --recursive
## Compression Support
-By default, support for the [Snappy](https://github.com/google/snappy),
+By default, support for [Snappy](https://github.com/google/snappy),
[LZ4](https://github.com/lz4/lz4), [Zstd](https://github.com/facebook/zstd),
[Zlib](https://zlib.net), and [Bzip2](http://www.bzip.org) compression
is enabled through crate features. If support for all of these compression
@@ -47,8 +47,8 @@ features = ["lz4"]
## Multithreaded ColumnFamily alternation
-The underlying RocksDB does allow column families to be created and dropped
-from multiple threads concurrently. But this crate doesn't allow it by default
+RocksDB allows column families to be created and dropped
+from multiple threads concurrently, but this crate doesn't allow it by default
for compatibility. If you need to modify column families concurrently, enable
the crate feature `multi-threaded-cf`, which makes this binding's
data structures use `RwLock` by default. Alternatively, you can directly create