• Support will be limited until May 1st, as I will be out of the office travelling. Thank you for your patience and understanding.
Status
Not open for further replies.

Nirjonadda

Customer
How to Configuration Memcache for vB config.php ? Can I use Xcache AND Memcache on the same server?would like to add in addition an opcode accelerator like Memcache. Can someone clarify? I would like to use them both - bit for different things. memcache for vB Optimise and Xcache for code acceleration.can use them both together at the same time.

Note: Memcache will use the settings defined in your config.php in order to connect, please make sure they are valid.
 
We cannot help you with that information, as it depends on your particular memcache installation.

Have you tried uncommenting the default values and see if they work for you?
 
Find
PHP:
/*
$config['Datastore']['class'] = 'vB_Datastore_Memcached';
$i = 0;
// First Server
$i++;
$config['Misc']['memcacheserver'][$i]		= '127.0.0.1';
$config['Misc']['memcacheport'][$i]			= 11211;
$config['Misc']['memcachepersistent'][$i]	= true;
$config['Misc']['memcacheweight'][$i]		= 1;
$config['Misc']['memcachetimeout'][$i]		= 1;
$config['Misc']['memcacheretry_interval'][$i] = 15;
*/

Change to
PHP:
$config['Datastore']['class'] = 'vB_Datastore_Memcached';
$i = 0;
// First Server
$i++;
$config['Misc']['memcacheserver'][$i]		= '127.0.0.1';
$config['Misc']['memcacheport'][$i]			= 11211;
$config['Misc']['memcachepersistent'][$i]	= true;
$config['Misc']['memcacheweight'][$i]		= 1;
$config['Misc']['memcachetimeout'][$i]		= 1;
$config['Misc']['memcacheretry_interval'][$i] = 15;

Undo this change if your site does not function after making this change.
 
This error some time show on my site with APC Version 3.1.6 , Please any update for fix on this issue?

Warning: apc_store() [function.apc-store]: Potential cache slam averted for key 'vbo_vb.optimiser.stats' in [path]/dbtech/vboptimise/includes/operators/apc.php on line 40
 
Status
Not open for further replies.

Legacy vB Optimise

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
1,980
Customer rating
0.00 star(s) 0 ratings
Back
Top