LimDB.lib 2026.3.57

dotnet add package LimDB.lib --version 2026.3.57
                    
NuGet\Install-Package LimDB.lib -Version 2026.3.57
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LimDB.lib" Version="2026.3.57" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LimDB.lib" Version="2026.3.57" />
                    
Directory.Packages.props
<PackageReference Include="LimDB.lib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LimDB.lib --version 2026.3.57
                    
#r "nuget: LimDB.lib, 2026.3.57"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LimDB.lib@2026.3.57
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LimDB.lib&version=2026.3.57
                    
Install as a Cake Addin
#tool nuget:?package=LimDB.lib&version=2026.3.57
                    
Install as a Cake Tool

LimDB

Overview

LimDB, which stands for Lightweight In-Memory Database is a small project to allow a simple JSON file to power Mobile, Desktop or Web applications where an embedded database like SQLite or LiteDb or a full database like Postgres or MongoDb is overkill. This database is meant for static data, less so with frequently changing data. However, basic CRUD operations are implemented right now. Future Transactions queueing and Transaction Log functionality will be implemented.

Performance

LimDB uses dictionary-based indexing for O(1) ID lookups, providing constant-time performance regardless of database size:

  • Up to 5,930x faster ID lookups on 10,000 items
  • Sub-nanosecond GetOneById operations
  • Thread-safe concurrent operations

Dependencies

Given the goal of being lightweight and versatile, the database has no dependencies outside of .NET 10.

Build Status

Publish to NuGet

Releases

LimDB is available on NuGet.org and has full CI/CD enabled on GitHub for commits on the Main branch. You can download the latest version here: https://www.nuget.org/packages/LimDB.lib

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.3.57 130 3/7/2026
2026.3.56 107 3/7/2026
2026.3.55 110 3/7/2026
2026.3.54 106 3/7/2026
2024.4.51 112 3/7/2026
2024.4.50 115 3/7/2026
2024.4.46 244 5/24/2024
2024.4.45 234 5/1/2024
2024.4.44 228 4/29/2024
2024.4.43 191 4/29/2024
2024.4.42 216 4/29/2024
2024.4.41 205 4/29/2024
0.1.0 220 4/28/2024

Initial release, full crud operations coming in a future release