Question Flushing Cache

Status
Not open for further replies.

EasyEasy

Customer
Hey guys,

Im after a bit of advice on this mod. Installed and working great im just curious on how often that the cache is to be flushed.

Do you do it every so often or is it for when we have a issue with site speed etc

Any input appreciated.

Cheers
 
Flushing in most places is automated, you can find the current actions that will kill the flush (or do a full flush) in class_vboptimise.php:

Code:
// ACP Actions to flush cache on
        $actions = array(
            'updatetemplate',
            'inserttemplate',
            'productimport',
            'rebuild',
            'insertstyle',
            'update',
            'clear_cache',
            'purgecache',
            'displayorder',
            'savestylevar',
            'insert',
            'import',
            'replace',
            'kill',
            'productsave',
            'productdependancy',
            'productcode',
            'productdisable',
            'productenable',
            'productkill',
            'dooptions',
        );

        // ACP actions to kill whole cache as a failsafe
        $full = array(
            'clear_cache',
            'purgecache',
        );
 
Flushing in most places is automated, you can find the current actions that will kill the flush (or do a full flush) in class_vboptimise.php:

Code:
// ACP Actions to flush cache on
        $actions = array(
            'updatetemplate',
            'inserttemplate',
            'productimport',
            'rebuild',
            'insertstyle',
            'update',
            'clear_cache',
            'purgecache',
            'displayorder',
            'savestylevar',
            'insert',
            'import',
            'replace',
            'kill',
            'productsave',
            'productdependancy',
            'productcode',
            'productdisable',
            'productenable',
            'productkill',
            'dooptions',
        );

        // ACP actions to kill whole cache as a failsafe
        $full = array(
            'clear_cache',
            'purgecache',
        );

Ok thanks Ozzy. So there is really no need to worry about it.
 
Status
Not open for further replies.

Similar threads

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