mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-18 05:41:43 +01:00
more cache
This commit is contained in:
parent
d4bbd9ebef
commit
38681aba64
@ -18,12 +18,12 @@ export class AppService implements OnModuleInit {
|
||||
|
||||
async onModuleInit() {
|
||||
//https://phiresky.github.io/blog/2020/sqlite-performance-tuning/
|
||||
//100 MB DB cache
|
||||
await this.dataSource.query(`PRAGMA cache_size = -100000;`);
|
||||
//500 MB DB cache
|
||||
await this.dataSource.query(`PRAGMA cache_size = -500000;`);
|
||||
//Normal is still completely corruption safe in WAL mode, and means only WAL checkpoints have to wait for FSYNC.
|
||||
await this.dataSource.query(`PRAGMA synchronous = normal;`);
|
||||
//1Gb
|
||||
await this.dataSource.query(`PRAGMA mmap_size = 1000000000;`);
|
||||
//3Gb
|
||||
await this.dataSource.query(`PRAGMA mmap_size = 3000000000;`);
|
||||
}
|
||||
|
||||
@Cron(CronExpression.EVERY_HOUR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user