Redis server : 3.2.8
PHP module : redis (3.1.1)
System test >> redis : no error. All are fine.
My redis config file :
$config['Optimise']['redisServers'] = array(
array('host' => '127.0.0.1', 'port' => 6379)
);
$config['Optimise']['redisMaxDelay'] = 10; // if slave server is out of sync by...
I have xCache successfully running on my VB board, running PHP 5.6. Would there be any likely performance gain in switching to Redis, from xCache? I am not really clear on the differences and how they affect VBulletin with VBOptimise Pro.
It looks like the xCache project has not been maintained...
Redis
$config['Optimise']['redisServers'] = array(
array('host' => '127.0.0.1', 'port' => 6379),
);
$config['Optimise']['redisMaxDelay'] = 10; // is slave server is out of sync by more than this many seconds, switch to master
$config['Optimise']['redisTimeout'] = 3; // if redis server...
I have redis version 2.2.5. All seems to be running.
Verified in redis-cli with 'info' I can see RAM being assigned.
Updates done for config.php
$config['Misc']['redisServers'] = array(
array('127.0.0.1', 6379),
);
$config['Misc']['redisMaxDelay'] = 10; // is slave server is out of sync...
Okay i have a new dedicated server running Php 5.6.16, this has opcode caching built in(not sure if VBOptimise makes use of this op code cache).
I have a choice of installing any caching server, but which one would be best to go for? Redis is fairly new I believe, so perhaps works better on the...
I installed Redis cache but I still get this error. What am I missing?
vB Optimise: You have selected a cache method that vB Optimise has detected you cannot use, this may be because the extension required is either not installed or configured correctly on your server. Please contact your...
I have today Install Redis on my Server. I have Start Redis and have write
$config['Misc']['redisServers'] = array(
array('127.0.0.1', 6379),
);
$config['Misc']['redisMaxDelay'] = 10; // is slave server is out of sync by more than this many seconds, switch to master...
Hey all,
We're releasing vB Optimise v2.6.2 Beta 1 in order to add support for Redis, an alternative to existing opcode cachers like XCache and Memcached. This integration is still in need of testing, having received only basic testing by ourselves on our development machines.
If you like the...