added nullcache to the structures job

This commit is contained in:
2019-05-29 23:43:04 -05:00
parent 81272c4fe8
commit a2e67b71e3

View File

@@ -73,6 +73,12 @@ class ProcessStructureJob implements ShouldQueue
$this->esi = new Eseye($authentication);
// Disable all caching by setting the NullCache as the
// preferred cache handler. By default, Eseye will use the
// FileCache.
$configuration = Configuration::getInstance();
$configuration->cache = NullCache::class;
//Set the connection for the job
$this->connection = 'redis';
}