The class RedisObjectCache
does not exist in version 2.x as we switched to namespaces.
Could you please try the following?
Change the line
$RedisObjectCache = new RedisObjectCache;
… to …
$RedisObjectCache = Rhubarb\RedisCache::instance();
And
'href' => wp_nonce_url( network_admin_url( add_query_arg( 'action', 'flush-cache', $RedisPage ) ), 'flush-cache' )
… to …
'href' => $RedisObjectCache->action_link( 'flush-cache' )
Sadly I am unable to test it a but there is a good chance that this might just work.