@mike8040 if you change some css file, you must purge all caches, always, regardless of using FVM or not, else you won’t see those changes consistently.
Files don’t require a query string. Query strings should not exist on static files.
If the file contents changed, FVM will rename it differently. The filename, is an hash of the code it was merged. But the minification is cached, to speed things up, that is why you need to purge the caches after modifying files.
The file renaming, is already the cache busting mechanism.
What problem exactly are you facing?
It sounds like you simply did no purge the caches properly.
—
@devopti the files are not deleted after 24 hours. If you don’t have the immediate purge enabled, it will only delete files older than 24h, at the time of the purge.
Minified files are static files with dynamic url’s, which may disappear anytime.
FVM needs to be able to purge the page cache, else your page caching is pointing to the wrong files. Whenever there is a FVM cache purge, you need to purge the HTML cache globally.
If you wan to increase the limit, then you can edit the functions.php file on line 540 and replace 86400
with the desired amount of seconds.
But hold on for that, there will be an update in a few days and I will extend this to 7 days for broader compatibility.