Jordan Terrell
Jordan Terrell
@hnakamur submitted facebook/rocksdb#5077 to add the missing APIs. Once they become available in a release, I'll work on adding support for it here in the Rust binding.
@eupn I've just pushed the beginnings of `ReadOnlyDB` into #268. Right now all it supports is `get_*` operations, but it will soon support the other read operations.
@eupn [Here](https://github.com/rust-rocksdb/rust-rocksdb/blob/31657c6ac593cc49267c23d4bbe51c0f462bf3ee/tests/test_read_only_db.rs) is one of the first tests for `ReadOnlyDB`.
I'm open to pull requests! ;-) That said, with .NETc going RTM, I will be doing this. Not sure on the timing though...
Makes sense - I'll make the change. Good catch!
Thanks for the pull request! I'll take a look at it.
I'm really liking the addition of the `|` (or) operator. I need to update it to be lazily evaluated, but that is really going to clean up some code I'm...
I knew the `||` operator uses the `true` operator for short-circuiting. However, we don't need the compiler short-circuiting with `Maybe`. It already has built in support for lazy evaluation and...