mbdavid / LiteDB

LiteDB - A .NET NoSQL Document Store in a single data file
http://www.litedb.org
MIT License
8.62k stars 1.25k forks source link

[QUESTION] Are there more Limits in LiteDB than in the Docu? #2266

Open mahop-net opened 1 year ago

mahop-net commented 1 year ago

Hello, I found the following Limits in the docu. Are there more Limits to care about? (And I have some questions)

LiteDB Limits found in Docs:

Are there more Limits?

Questions:

And (Two more things):

Thanks a lot for your great work!!! LiteDB looks cool, I would like to use it in a new project.... Nice greeting from Bavaria, Markus

ProKn1fe commented 1 year ago

I found only database size limit and it can be changed as LiteDatabase.LimitSize. Also i don't think there is any file size limit but i recommend to not store many large files.

mahop-net commented 1 year ago

So finally I scanned the code and got some Limits:

I did not find a Limit for FileSize stored in the FileStorage

mahop-net commented 1 year ago

And about the two qestions:

How does LiteDB Cache work? Is it faster to keep a Connection Open for Multiple queries?

What is db.Checkpoint() doing? Do I have to call it from time to time?