From e3cc3319239c89b94b0fe54d3bb88503a23153e7 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Sat, 13 Jan 2024 20:49:26 +0100 Subject: [PATCH] feat(config): increase Octane cache limits Increase the maximum number of rows in the Octane cache from 1000 to 100000 and the number of bytes per row from 10000 to 70000. This change allows for more efficient caching and improves performance. --- config/octane.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/octane.php b/config/octane.php index 8b578ae..d4b839e 100644 --- a/config/octane.php +++ b/config/octane.php @@ -162,11 +162,11 @@ return [ | by a Swoole table. You may set the maximum number of rows as well as | the number of bytes per row using the configuration options below. | - */ + */ 'cache' => [ - 'rows' => 1000, - 'bytes' => 10000, + 'rows' => 100000, + 'bytes' => 70000, ], /*