meebey / leveldb-sharp

C# LevelDB binding
https://www.meebey.net/projects/leveldb-sharp/
BSD 3-Clause "New" or "Revised" License
124 stars 38 forks source link

Support binary data instead of only string (keys & values) #12

Closed hhanh00 closed 9 years ago

hhanh00 commented 9 years ago

leveldb allows arbitray binary arrays for their keys and values. This pull request modifies the C# wrapper to allow for null values in the database.

meebey commented 9 years ago

I would merge such change if it still offers a string version, maybe via generics? Say DB < K, V > where K and V are the type of the key and value

hhanh00 commented 9 years ago

It seems that only string and byte[] would be supported natively.

meebey commented 9 years ago

Also see the failed build: https://travis-ci.org/meebey/leveldb-sharp/builds/46202770