Description
A leveldb implementation in C#, targeting .NET Standard 1.3 (Frameworks 4.6+, Core 1.0+).
IronLeveldb alternatives and similar packages
Based on the "Database Drivers" category.
Alternatively, view IronLeveldb alternatives based on common mentions on social networks and blogs.
-
RethinkDb.Driver
A RethinkDB database driver in C# striving for 100% ReQL API compatibility and completeness. -
Storage.Net
Generic storage abstractions and implementations for popular cloud storage providers like Amazon S3, Azure Service Bus, Azure Event Hub, Azure Storage, Azure Data Lake Store and many others. -
Firebird.NET
The .NET Data provider is written in C# and provides a high-performance, native implementation of the Firebird API
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of IronLeveldb or a related project?
README
IronLeveldb
A leveldb implementation in C#, targeting .NET Standard 1.3 (Frameworks 4.6+, Core 1.0+).
This project is still under hard working and was built to read leveldb instances on Azure Blob Storage originally, thus, only partial of READ functions were implemented at the moment.
Build the project
The main project can be built using dotnet on any platform, but the test project is now targeting net46 due to some dependencies, which can only build and run on Windows.
git clone https://github.com/tg123/IronLeveldb.git
dotnet restore
dotnet build
dotnet test IronLeveldb.Test\IronLeveldb.Test.csproj
How to use
Install
Install-Package IronLeveldb -Pre
Open a local directory
var db = IronLeveldbBuilder.BuildFromPath(dbpath)
- Open a directory on Azure Blob
var storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
var blobClient = storageAccount.CreateCloudBlobClient();
var container = blobClient.GetContainerReference("mycontainer");
var folder = container.GetDirectoryReference("leveldb_directory");
var db = new IronLeveldbOptions
{
Storge = new AzureBlobFolderStorage(folder)
}.Build()
More info about blob storage at https://docs.microsoft.com/en-us/azure/storage/storage-dotnet-how-to-use-blobs
Roadmap
// TBD