You are not logged in.
Pages: 1
Hi mORMot,
When I test the "\SQLite3\Samples\21 - HTTP Client-Server performance", found the usage of server side memory increasing and not releasing ever,
Is anything about thread resource not clearing?
Offline
There is no memory leak, if you run the process with memory leak reporting.
What you see is the SQLite3 cache buffers be filled, so memory allocation is increasing.
By default, the cache buffers are about 40MB for each Sqlite3 opened file. But you can lower it down if you expect such a cache to be not useful (e.g. if you mostly write, and never read the content).
We use the framework on 24/7 production servers, with billions of ORM insertion, with stable memory use (once the SQlite3 cache buffers are filled).
Offline
Hi ab,
Thank you so much for your reply in time, it do work very well!
Offline
Pages: 1