Back to browse
GitHub Repository

Embedded Document Database

49 starsC#

I have create BLite a Document embedded database

by lucafabbri·Feb 19, 2026·2 points·1 comment

AI Analysis

●●SolidWizardryBig Brain

Zero-alloc embedded DB for .NET, but SQLite bindings already dominate this niche.

Strengths
  • Memory-mapped files + Span<T> architecture eliminates heap pressure on reads/writes
  • Full LINQ provider with B-Tree indexing and vector search (HNSW) for embeddings
  • Write-Ahead Logging, snapshot isolation, composite indexes show production maturity
Weaknesses
  • Targets .NET 10 only; .netstandard2.1 future support uncertain, limits adoption
  • Embedded databases already well-solved by SQLite wrapper ecosystem for .NET
Target Audience

C# / .NET backend developers building high-performance embedded systems

Similar To

SQLite (via Microsoft.Data.Sqlite) · RocksDB · LiteDB

Similar Projects