Skip to content

Commit

Permalink
Increased max DB pool size
Browse files Browse the repository at this point in the history
- this helps with performance because it allows requests that produce a
  large number of DB requests to fire off more requests at once
  • Loading branch information
daniellockyer committed Nov 18, 2024
1 parent 85d0022 commit 7ffaade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const client = Knex({
},
pool: {
min: 1,
max: 25,
max: 50,
},
});

Expand Down

0 comments on commit 7ffaade

Please sign in to comment.