manojknaikade

Results 2 comments of manojknaikade

> I can confirm. > Disabling the caching in config.php made the document open. > Using APCU > 'memcache.local' => '\OC\Memcache\APCu', > > Though it takes some while to open....

I was able to solve the problem by adding Redis for distributed cache config.php looks like this now ``` 'memcache.local' => '\\OC\Memcache\APCu', 'memcache.distributed' => '\\OC\Memcache\Redis', 'memcache.locking' => '\\OC\Memcache\Redis', 'redis' =>...