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
csutch committed Nov 14, 2023
1 parent 2a9496d commit d7f7b89
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 d7f7b89

Please sign in to comment.