I mean will in the next Version / Patch can add Set_cache option ? for rename Cache Folder into something like Public, etc and True/False to Encrypt Cache file name ? this will be useful for develop website in PHP Framework when in ENVIROMENT Dev / Prod.
Example :
if(ENVIRONMENT == 'production')
{
replace this look like
echo link_tag('assets/my_lib/css/stylesheet/scss_cache/3c47a77b13479ae1af0dc793e5a0ae30.css');
into this
echo link_tag('assets/my_lib/css/stylesheet/public/my_style.css');
}
else
{
echo link_tag('assets/my_lib/css/scss.php/my_style.scss');
}
No need to
Benefit
just loadding file cache instead in Prod mode it done.