There’s been many articles written about how to properly implement static asset caching over the years and the best practices boil down three things.
- Make sure the server is sending RFC compliant caching headers.
- Send long expires headers for static assets.
- Use version numbers in asset paths so that we can precisely control expiration.
Implementing these suggestions on Heroku or elsewhere is super simple and will help not only reduce load but also make subsequent page loads faster. I’ve implemented the following on my Heroku WordPress install which runs on the default Apache/PHP Heroku build pack however you can apply these concepts to other tech stacks as well.
Proper Cache Headers
To properly cache a resource we should always send an explicit cache header that tells the client retrieving the content when the resource expired and a cache validator header. Cache validators are either ETag
or Last-Modified
headers. The server should send these headers even if the expires headers have already been explicitly set on the request so that browsers may issue conditional get requests with If-None-Match
, If-Modified-Since
, or If-Range
requests. The browser issues these types of requests to validate the content that is already cached locally with the origin server. (This happens when the end-user clicks the refresh button on their browsers.)
For static files Apache will do most of the heavy lifting for us and it will generate both a ETag
and a Last-Modified
based on the filesystem stats on the static file. Unfortunately due to the way Heroku dynos operates Apache will not set either of these tags properly and will prevent the proper caching of the static asset object.
By default Apache 2.2 generates ETags using the filesystem i-node, last modified time, and file size of the file. With Heroku, when we push any changes our code gets packaged with Apache and PHP into a compiled slug which can then be deployed to dynos as they are spun up and down dynamically on an ephemeral filesystem. This means as Heroku allocates dynos to our app (which may happen at anytime without action from us) the underlying filesystem i-node for any given static file will fluctuate. Even worse, if we have multiple dynos running our app each dyno will report a different i-node value for any particular static file and thus will calculate a different ETag value. The net effect being we end up confusing any downstream browsers / reverse proxies potentially causing them to not cache our content and to respond incorrectly to any If-None-Match
requests. To fix this we will need to configure Apache to use only last modified time, and file size to calculate ETag values.
In addition to sending differing ETags for the same content it’s also possible for us to have the exact opposite problem, sending the same ETag for different entities. The W3C designed ETags to identify unique instances of entities which includes the encoding used for transport. This is important because what is actually transferred for the same CSS file served compressed or uncompressed is vastly different our servers should mark the entity as different so that intermediate reverse proxies knows to treat the transferred content as different.
Because Apache generates the ETag based on file system stats any transformations on the file is not taken into account. This means that when mod_deflate
is enabled both the deflate encoded and plain instance of each asset will have the same ETag value as calculated by Apache. This is not compliant and could cause reverse proxies to send improperly encoded content via ranged requests. There is a ticket opened for this with Apache but no timeline for a fix. So instead of waiting for a patch it’s better to configure Apache to not calculate ETag values when mod_deflate
is turned on and rely on Last-Modified
for content validation.
Putting the two things together I have added the following into my httpd.conf
for my Heroku app.
# Only use modified time and file size for ETags
FileETag MTime Size
# Don't use ETags if mod_deflate is on (Apache bug)
# https://issues.apache.org/bugzilla/show_bug.cgi?id=39727
<IfModule mod_deflate.c>
FileETag None
</IfModule>
As a side note, when new code gets pushed to Heroku all files within the app will have the time of the push assigned as the last modified date. This keeps last modified times consistent across dynos but it also means our static assets will send the full content back to the browser instead of a 304 not modified response back for If-Modified-Since
requests after deploys. This is not ideal but it’s not super terrible and I don’t know of a simple way to solve this issue.
Dynamic Version Slugs & Long Expires
The easiest way to speed up repeat page loads is to cache page assets like JavaScript and CSS so that as a visitor clicks around the site their browser will only request the updated content from the server. And if those assets has a long enough expires value, the visitor will get the same quick load time when they comes back in a day or week or month. The only problem is if we cache assets for too long on the user’s browser and then decide to change something on the site our visitor will get outdated assets.
The easiest way to fix this issue is to version our assets so that we can specify a long expires value with a unique version number and then simply update the asset version number every time we change the content. Ideally we specify the version slug within the path of the URL instead of simply adding it as a query string because some reverse proxies will not cache resources with a query string even with a valid caching header.
For this site I created a /assets/
subdirectory under the document root and placed the following .htaccess
file within it.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /assets
# Don't rewrite for actual files
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule . - [L]
# Remove version slug & rewrite to asset
RewriteCond %{DOCUMENT_ROOT}/assets/$1 !-d
RewriteCond %{DOCUMENT_ROOT}/assets/$2 -f
RewriteRule ^([^/]+)/(.*)$ /assets/$2 [L]
# Set 360 day expiration on everything
<IfModule mod_headers.c>
Header set Cache-Control "max-age=31104000"
</IfModule>
</IfModule>
This allows me to inject any arbitrary version slug after assets and have that file served up with a long expires time. So if there exists a file on my server with the path assets/js/my_script.js
I can refer to it as /assets/v123/js/my_script.js
and then simply replace v123
with any other version number I want for caching purposes.
Please note I have set the expires value of assets to 360 days or slightly less than one year because according to RFC 2616
To mark a response as “never expires,” an origin server sends an Expires date
approximately one year from the time the response is sent. HTTP/1.1 servers
SHOULD NOT send Expires dates more than one year in the future.
So if we send something with a max-age of 10 years that may get interpreted as an invalid expires value and invalidate our caching headers.