I have put the cache clear code in a .cfm page for security reasons. The cache clear code is
<cfheader name="Cache-Control" value="no-cache,no-store,must-revalidate">
<cfheader name="Pragma" value="no-cache">
<cfheader name="Expires" value="#GetHttpTimeString(Now()-1)#">
Now for every request it fetching all the JavaScript, CSS and image files from server which decrease the speed of my site. Is there any way in ColdFusion or JavaScript to keep the JavaScript, CSS and image files in cache to increase performance?