We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90354a commit 242dc56Copy full SHA for 242dc56
src/Adapter/DBCache.php
@@ -64,6 +64,8 @@ public function save()
64
$contents = $this->getForStorage();
65
$blobCache = BlobCache::instance($this->key, $this->expire);
66
$blobCache->Contents = $contents;
67
- $blobCache->write();
+
68
+ // Force write to ensure modified date is refreshed
69
+ $blobCache->write(false, false, true);
70
}
71
0 commit comments