Commit d6f94a04 authored by Tyler Neely's avatar Tyler Neely

Update features on readme.

parent 4f49919e
...@@ -4,6 +4,25 @@ rust-rocksdb ...@@ -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. 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 ###### Prerequisite: RocksDB
```bash ```bash
wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz
...@@ -105,21 +124,3 @@ fn tuned_for_somebody_elses_disk() -> RocksDB { ...@@ -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.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment