The cache configuration
A typical exception that you might see when you start to use Octane Cache in a real scenario is something like this:
Value [a:4:{i:0;i:100000;i:...] is too large for [value] column
The solution to the error message above is to change the cache configuration by increasing the number of bytes allocated for storing the cache values. In the config/octane.php
file, you can configure the cache for the number of rows and the number of bytes allocated for the cache.
By default, the configuration is as follows:
'cache' => [ 'rows' => 1000, 'bytes' => 10000, ],
If you get the Value is too large
exception in your browser, you might have to increase the number of bytes in the config/octane.php
file:
'cache' => [ ...