Our site uses a great deal of static files in such way:
$cs = Yii::app()->clientScript;
$cs->registerCssFile(Yii::app()->staticServers[0]. 'static/css/site.css');
$cs->registerScriptFile(Yii::app()->staticServers[1]. 'static/js/site.js');
Where:
$staticServers = array('server1', 'server2',)
The question is: How to make user's browser cache to clear in this case after updating static files and downloading them.