DittoPostgres: use pool size for number of CPU cores
This commit is contained in:
parent
f4c02f1568
commit
a3e54fdff4
|
@ -16,9 +16,10 @@ export class DittoPostgres {
|
|||
},
|
||||
// @ts-ignore mismatched kysely versions probably
|
||||
createDriver() {
|
||||
return new PostgreSQLDriver({
|
||||
connectionString: Deno.env.get('DATABASE_URL'),
|
||||
});
|
||||
return new PostgreSQLDriver(
|
||||
{ connectionString: Deno.env.get('DATABASE_URL') },
|
||||
navigator.hardwareConcurrency,
|
||||
);
|
||||
},
|
||||
createIntrospector(db: Kysely<unknown>) {
|
||||
return new PostgresIntrospector(db);
|
||||
|
|
Loading…
Reference in New Issue