Search code examples
c#databaselitedb

What is the maximum size of a Litedb database and how to claim unused space?


The limit size of all database and not only collections, and how claim unused space of delete data?

Update: The question is about LITEDB and no SQLITE, some people don't even ready what is about.


Solution

  • Read the fine manual - it says theoretically UInt.Max * page size (4096) = 16TB for version 4.x

    Apparently, for 5.x, PageSize is 8196.