Status
Not open for further replies.

Vitaly

Customer
Sinse i constantly develop & deploy new mods to production site, should i use "flush cache" after ACP operations? Such as:

- install new mod
- change settings
- edit phrases
- change TMS rules
and so on...
 
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',
		);

For the most part, this handles nearly all places but there are some still pending (like stylevar replacements) - we'll be expanding the list for the RC1 release of v3 - meanwhile you're free to expand the lists yourself for any actions you find that don't flush the cache :)
 
The rules defined above apply to 3.8 too, is there any specific action that isn't flushing cache for you hornstar? :)
 
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