Skip to content

Commit

Permalink
increase insert xxx select xxx speed
Browse files Browse the repository at this point in the history
  • Loading branch information
osdba authored and csutch committed Nov 24, 2023
1 parent a26fc13 commit 1d6ee47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/storage/buffer/freelist.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ GetAccessStrategy(BufferAccessStrategyType btype)
return NULL;

case BAS_BULKREAD:
ring_size = 256 * 1024 / BLCKSZ;
ring_size = 1024 * 1024 / BLCKSZ;
break;
case BAS_BULKWRITE:
ring_size = 16 * 1024 * 1024 / BLCKSZ;
Expand Down

0 comments on commit 1d6ee47

Please sign in to comment.