Hi @TP75, thanks a lot for you preconfigured textblock answers 
Here is the solution
i just found out myself by REreading the config.sample.php:
my old values where:
'memcache.local' => '\\OC\\Memcache\\APCu',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis-server.sock',
'port' => 0,
'timeout' => 0,
'dbindex' => 0,
),
where the
'dbindex' => 0,
is optional, if undefined SELECT will not run and will use Redis Server’s default DB Index.
Removing that line, makes the “SELECT” “0” remove.
As you can see, i have had configured my server to only do memcache.locking by redis, since i have everything running on one host.
After changing the config to
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis-server.sock',
'port' => 0,
'timeout' => 0,
// 'dbindex' => 0,
),
i get a much more verbose output.
Sometimes the simplest solution is usually the most obvious, and you still can not get it right away 