Пример для демо-версии нашей. Рядом с config.php лежит файл config.local.php, в котором прописано следующее:
[PHP]<?php
$bb_cfg['db'] = array(
'db1' => array('localhost', 'beta', 'beta', '*******', $charset, $pconnect),
);
$bb_cfg['cache']['prefix'] = 'beta_';
// Available cache types: memcache, sqlite, redis, apc, xcache (default of filecache)
# name => array( (string) type, (array) cfg )
$bb_cfg['cache']['engines'] = array(
'bb_cache' => array('memcache', array()),
'bb_config' => array('filecache', array()),
'tr_cache' => array('memcache', array()),
'session_cache' => array('memcache', array()),
'bb_cap_sid' => array('memcache', array()),
'bb_login_err' => array('memcache', array()),
'bb_poll_data' => array('memcache', array()),
);
// Datastore
// Available datastore types: memcache, sqlite, redis, apc, xcache (default filecache)
$bb_cfg['datastore_type'] = 'memcache';[/PHP]Минимально необходимые параметры в общем.