From d6f94a0494032f47f4c24b0636ad704f564913c1 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Sun, 12 Jul 2015 03:01:17 -0700 Subject: [PATCH] Update features on readme. --- README.md | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index f9bd103..e1527e0 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,25 @@ rust-rocksdb This library has been tested against RocksDB 3.8.1 on linux and OSX. The 0.0.6 crate should work with the Rust nightly release as of 7/12/15. +### status + - [x] basic open/put/get/delete/close + - [x] linux support + - [x] rocksdb compiled via cargo + - [x] OSX support + - [x] rustic merge operator + - [x] compaction filter, style + - [x] LRU cache + - [x] destroy/repair + - [x] write batch (thanks @dgrnbrg!) + - [ ] create/release snapshot + - [ ] iterator + - [ ] column family operations + - [ ] comparator + - [ ] slicetransform + - [ ] windows support + +Feedback and pull requests welcome! If a particular feature of RocksDB is important to you, please let me know by opening an issue, and I'll prioritize it. + ###### Prerequisite: RocksDB ```bash wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz @@ -105,21 +124,3 @@ fn tuned_for_somebody_elses_disk() -> RocksDB { } ``` -### status - - [x] basic open/put/get/delete/close - - [x] linux support - - [x] rocksdb compiled via cargo - - [x] OSX support - - [x] rustic merge operator - - [x] compaction filter, style - - [x] LRU cache - - [x] destroy/repair - - [ ] create/release snapshot - - [ ] iterator - - [ ] column family operations - - [ ] write batch - - [ ] comparator - - [ ] slicetransform - - [ ] windows support - -Feedback and pull requests welcome! If a particular feature of RocksDB is important to you, please let me know by opening an issue, and I'll prioritize it.