LimDB.lib
2026.3.57
dotnet add package LimDB.lib --version 2026.3.57
NuGet\Install-Package LimDB.lib -Version 2026.3.57
<PackageReference Include="LimDB.lib" Version="2026.3.57" />
<PackageVersion Include="LimDB.lib" Version="2026.3.57" />
<PackageReference Include="LimDB.lib" />
paket add LimDB.lib --version 2026.3.57
#r "nuget: LimDB.lib, 2026.3.57"
#:package LimDB.lib@2026.3.57
#addin nuget:?package=LimDB.lib&version=2026.3.57
#tool nuget:?package=LimDB.lib&version=2026.3.57
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
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 | Versions 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. |
-
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