You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Classes/Aspects/CacheUrlMappingAspect.php
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,11 @@ class CacheUrlMappingAspect
37
37
*/
38
38
protected$isActive = false;
39
39
40
+
/**
41
+
* @var null | int
42
+
*/
43
+
protected$renderTimestamp = null;
44
+
40
45
/**
41
46
* @var array
42
47
*/
@@ -143,7 +148,8 @@ public function storeRootCacheIdentifier(JoinPointInterface $joinPoint)
143
148
$arguments = $this->getCurrentArguments($node);
144
149
// TODO: To make parallel rendering possible, we need to make sure that the cache key also includes the currently rendered workspace, as the node might originate from a base workspace (usually live). See `DocumentNodeCacheKey`.
0 commit comments