1
0
Fork 0
mirror of synced 2024-09-17 01:47:57 +12:00

cache deleteById to deleteByGroup

This commit is contained in:
shimon 2023-07-13 13:36:14 +03:00
parent a37fee2d16
commit b7aab21698

View file

@ -136,20 +136,22 @@ class DeletesV1 extends Worker
*/
protected function deleteCacheByResource(Document $project, string $resource): void
{
$projectId = $project->getId();
$dbForProject = $this->getProjectDB($projectId);
$document = $dbForProject->findOne('cache', [Query::equal('resource', [$resource])]);
$dbForProject = $this->getProjectDB($project);
if ($document) {
$cache = new Cache(
new Filesystem(APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId)
);
$this->deleteById(
$document,
$query = [
Query::equal('resource', [$resource])
];
$this->deleteByGroup(
'cache',
$query,
$dbForProject,
function ($document) use ($cache, $projectId) {
function (Document $document) use ($cache, $projectId) {
$path = APP_STORAGE_CACHE . DIRECTORY_SEPARATOR . 'app-' . $projectId . DIRECTORY_SEPARATOR . $document->getId();
if ($cache->purge($document->getId())) {
@ -160,7 +162,6 @@ class DeletesV1 extends Worker
}
);
}
}
/**
* @param string $datetime