diff --git a/config/common.neon b/config/common.neon index ed27617..360b331 100644 --- a/config/common.neon +++ b/config/common.neon @@ -27,9 +27,9 @@ extensions: ################################## services: - # cache.storage: FastyBird\Library\Application\Caching\MemoryAdapterStorage(FastyBird\Library\Application\Caching\FileStorage(%tempDir%/cache, Nette\Caching\Storages\SQLiteJournal(%tempDir%/cache/journal.s3db))) - # cache.storage: FastyBird\Library\Application\Caching\FileStorage(%tempDir%/cache, Nette\Caching\Storages\SQLiteJournal(%tempDir%/cache/journal.s3db)) - cache.storage: FastyBird\Library\Application\Caching\FileStorage(%tempDir%/cache) + cache.storage: FastyBird\Library\Application\Caching\MemoryAdapterStorage(Nette\Caching\Storages\FileStorage(%tempDir%/cache, Nette\Caching\Storages\SQLiteJournal(%tempDir%/cache/journal.s3db))) + # cache.storage: Nette\Caching\Storages\FileStorage(%tempDir%/cache, Nette\Caching\Storages\SQLiteJournal(%tempDir%/cache/journal.s3db)) + # cache.storage: Nette\Caching\Storages\FileStorage(%tempDir%/cache) # Symfony console support extension ################################### diff --git a/src/Caching/FileStorage.php b/src/Caching/FileStorage.php deleted file mode 100644 index b89a8cf..0000000 --- a/src/Caching/FileStorage.php +++ /dev/null @@ -1,23 +0,0 @@ - - * @package FastyBird:ApplicationLibrary! - * @subpackage Caching - * @since 1.0.0 - * - * @date 08.03.20 - */ - -namespace FastyBird\Library\Application\Caching; - -use Nette\Caching\Storages; - -class FileStorage extends Storages\FileStorage -{ - -}