sqlite: try increasing size and concurrency

This commit is contained in:
Alex Gleason 2023-12-06 21:22:37 -06:00
parent c36e8de0ed
commit 6993f20d0a
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -12,6 +12,7 @@ class SqliteWorker {
spawn<typeof _SqliteWorker>( spawn<typeof _SqliteWorker>(
new Worker(new URL('./sqlite.worker.ts', import.meta.url).href, { type: 'module' }), new Worker(new URL('./sqlite.worker.ts', import.meta.url).href, { type: 'module' }),
), ),
{ size: 8, concurrency: 4 },
); );
} }