Edit File: createSwooleCacheTable.php
<?php use Laravel\Octane\Tables\TableFactory; use Swoole\Table; require_once __DIR__.'/../src/Tables/TableFactory.php'; if ($serverState['octaneConfig']['cache'] ?? false) { $cacheTable = TableFactory::make( $serverState['octaneConfig']['cache']['rows'] ?? 1000 ); $cacheTable->column('value', Table::TYPE_STRING, $serverState['octaneConfig']['cache']['bytes'] ?? 10000); $cacheTable->column('expiration', Table::TYPE_INT); $cacheTable->create(); return $cacheTable; }
Back to File Manager