File Cache için
$config['cache']['enabled'] = true; $config['cache']['backend'] = 'File'; $config['cache']['frontend'] = 'Core'; $config['cache']['cacheSessions'] = true; $config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_'; $config['cache']['backendOptions'] ['cache_dir'] = '/home/siteadı/public_html/internal_data/cache';Bu cache, File cache için geçerlidir. Bunu yaptığınızda forumunuzun performansı daha da artacaktır. Fakat şu yolu doğru girmelisiniz;
/home/siteadı/public_html/internal_data/cacheAPC Cache için
$config['cache']['enabled'] = true; $config['cache']['backend'] = 'Apc'; $config['cache']['frontend'] = 'Core'; $config['cache']['cacheSessions'] = true; $config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_'; $config['cache']['backendOptions'] ['cache_dir'] = '/home/siteadı/public_html/internal_data/cache';Bu cache, APC cache için geçerlidir. Bunu yaptığınızda forumunuzun performansı daha da artacaktır. Fakat şu yolu doğru girmelisiniz;
/home/siteadı/public_html/internal_data/cachexCache için
$config['cache']['enabled'] = true; $config['cache']['frontend'] = 'Core'; $config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_'; $config['cache']['backend'] = 'Xcache'; $config['cache']['backendOptions'] = array( 'user' => 'xcachekullanıcıadınız', 'password' => 'xcacheşifreniz' );User ve Password yerine xCache admin kullanıcı adı ve şifresini yazıyoruz ve işlemimiz tamamdır.
Memcached Back-End için
$config['cache']['backend'] = 'Memcached'; $config['cache']['backendOptions'] = array( 'compression' => false, 'servers' => array( array( // your memcached server IP /address 'host' => 'localhost', // memcached port 'port' => 11211, ) ) );Cache opsiyonları böyle oluyor. Eğer büyük bir forumunuz varsa, bunları yapmanız mutlaka önerilir. Epey fark edecektir. Ben daima xCache tercih ettiğim için sizlere de xCache öneriyorum ama şu an öyle bir alternatifi olmayanlar File veya APC tercih edebilirler. Özellikle APC çok güzel ve etkili çalışmaktadır.