Update
So i did a Deep dive into REDIS with the MONITOR funktion and noticed that while loading a Page REDIS is going insane with the transactions.
I’ve got tousands of transactions with loading the Page once. Here just one block of the MONITOR log:
1515345445.254258 [0 127.0.0.1:33904] “EXEC”
1515345445.254432 [0 127.0.0.1:33904] “INCRBY” “0a05783b24c9cb834dd7430c1a79ac24/lockfiles/d6aad4cbc3df439e322896aebdcb520e” “1”
1515345445.254507 [0 127.0.0.1:33904] “EXPIRE” “0a05783b24c9cb834dd7430c1a79ac24/lockfiles/d6aad4cbc3df439e322896aebdcb520e” “3600”
1515345445.255699 [0 127.0.0.1:33904] “WATCH” “0a05783b24c9cb834dd7430c1a79ac24/lockfiles/d6aad4cbc3df439e322896aebdcb520e”
1515345445.255807 [0 127.0.0.1:33904] “GET” “0a05783b24c9cb834dd7430c1a79ac24/lockfiles/d6aad4cbc3df439e322896aebdcb520e”
1515345445.255878 [0 127.0.0.1:33904] “MULTI”
1515345445.255999 [0 127.0.0.1:33904] “DEL” “0a05783b24c9cb834dd7430c1a79ac24/lockfiles/d6aad4cbc3df439e322896aebdcb520e”
Memcache Loking is activated
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
On all other Cloud Platforms do we have most of the time only GET requests in REDIS
may that helkps to isolate the problem