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.
This commit is contained in:
Rico van Zelst
2024-01-13 20:49:26 +01:00
parent 83e94327d3
commit e3cc331923

View File

@@ -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,
],
/*