Improve performance of import script

This commit is contained in:
Alex Gleason
2024-08-11 16:07:29 -05:00
parent 66cfba5535
commit 9f9a07e618
2 changed files with 24 additions and 4 deletions

View File

@@ -235,7 +235,7 @@ class Conf {
static pg = {
/** Number of connections to use in the pool. */
get poolSize(): number {
return Number(Deno.env.get('PG_POOL_SIZE') ?? 10);
return Number(Deno.env.get('PG_POOL_SIZE') ?? 20);
},
};
/** Whether to enable requesting events from known relays. */