File tree Expand file tree Collapse file tree
Classes/NodeRendering/Infrastructure
Configuration/Testing/Behat Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010use Neos \Flow \Annotations as Flow ;
1111use Flowpack \DecoupledContentStore \Core \Infrastructure \RedisClientManager ;
1212use Neos \Fusion \Core \Cache \ContentCache ;
13- use Sandstorm \ OptimizedRedisCacheBackend \ OptimizedRedisCacheBackend ;
13+ use Neos \ Cache \ Backend \ RedisBackend ;
1414
1515/**
1616 * @Flow\Scope("singleton")
@@ -49,8 +49,8 @@ public function tryToExtractRenderingForEnumeratedNodeFromContentCache(DocumentN
4949
5050 $ redis = null ;
5151 $ backend = $ this ->contentCache ->getBackend ();
52- if ($ backend instanceof OptimizedRedisCacheBackend ) {
53- $ reflProp = new \ReflectionProperty (OptimizedRedisCacheBackend ::class, 'redis ' );
52+ if ($ backend instanceof RedisBackend ) {
53+ $ reflProp = new \ReflectionProperty (RedisBackend ::class, 'redis ' );
5454 $ reflProp ->setAccessible (true );
5555 $ redis = $ reflProp ->getValue ($ backend );
5656 } else {
Original file line number Diff line number Diff line change 11Neos_Fusion_Content :
22 frontend : Neos\Cache\Frontend\StringFrontend
3- backend : Sandstorm\OptimizedRedisCacheBackend\OptimizedRedisCacheBackend
3+ backend : Neos\Cache\Backend\RedisBackend
Original file line number Diff line number Diff line change 33 "type" : " neos-package" ,
44 "name" : " flowpack/decoupledcontentstore" ,
55 "require" : {
6- "php" : " ^7.1 || ^8.0" ,
7- "neos/neos" : " ^7.0" ,
8- "albertofem/rsync-lib" : " ~1.0" ,
9- "sandstorm/optimizedrediscachebackend" : " ^1.1.4" ,
10- "flowpack/prunner" : " ^0.2"
6+ "php" : " ^8.0" ,
7+ "neos/neos" : " ^8.0" ,
8+ "albertofem/rsync-lib" : " ~1.0"
119 },
1210 "autoload" : {
1311 "psr-4" : {
You can’t perform that action at this time.
0 commit comments