Hacker News new | ask | show | jobs
by malditogeek 4746 days ago
OP, I've been using leveldb-ruby[1] for some time. Is yours just an alternative implementation or are there any other improvements I'm missing?

[1] https://github.com/wmorgan/leveldb-ruby

1 comments

Is an alternative with some features, i.e. snapshots (IIRC), then I'm planning to add custom comparators and pluggable builtin serializers. Another thing is that leveldb-ruby is built in c++, instead mine uses ruby builtin ffi, should be a little slower (benchmarks will come) but easier to maintain and to extend.
Since it uses ffi it should work on jruby, have you actually tried to see if it works well?