rocksdb-sharp
rocksdb-sharp copied to clipboard
.net bindings for the rocksdb by facebook
Enables discovery of this repo from http://nuget.org/packages/rocksdb
Could we please have the official binaries by Facebook for all platforms? The linkage to snappy and bz2 causes many problems on Linux, sometimes on macOS. Replacing those with _ones...
So i tried to use RocksDbSharp in a AoT published project today and it didn´t work. Looked at the code, and yes makes sense, as it emits the IL to...
Remove unnecessary dependencies
Minimal changes to support RockDB's TransactionDb/Transaction, including some basic unit tests. Notes: 1. Most of the underly functionality of `RocksDb` was moved to `RocksDbBase` in order to avoid having overloads...
As the title already says, support for win-arm64 would be highly appreciated. Currently I have to run projects on my ARM-based windows machine through x64 packages, since native library is...
Just want to check if transactions in RocksDb are supported by the C# library? I saw it was possible in the c++ API but I did not see it immediately...
Helper code often needs default Read/Write options.
Only for netstandard2.1 and up Potential Implementation: ```cs public sealed class PinnableSlice : IDisposable { public IntPtr Handle { get; internal set; } public PinnableSlice(IntPtr handle) { Handle = handle;...
I was trying out this library for a merge scenario. I used the RocksDB.Merge(string, string value...) overload. I also specified a custom MergeOperator and set some breakpoints in the partial/full...