Firestore cache driver for Laravel app running inside Google App Engine.
firevel/firestore-cache-driver is a Laravel package for firestore cache driver for laravel app running inside google app engine..
It currently has 7 GitHub stars and 20.168 downloads on Packagist (latest version 1.1.0).
Install it with composer require firevel/firestore-cache-driver.
Discover more Laravel packages by firevel
or browse all Laravel packages to compare alternatives.
Last updated
Cache driver for Laravel/Firevel applications running inside App Engine standard environment.
composer require firevel/firestore-cache-driver
Add firestore driver to config/cache.php
'stores' => [
...
'firestore' => [
'driver' => 'firestore',
'collection' => 'cache', // Firestore collection name.
],
...
];
Set CACHE_DRIVER=firestore in your .env.
Driver was developed basing on Laravel 5.8+ where TTL is counted in seconds not minutes.
flush() taking some time.