Manipulating the cache key

Before you begin

If your origin uses special values (e.g., request headers) to select content for users or to otherwise direct requests to appropriate security domains, consider including those values in your cache key or Vary header. Doing so will prevent you from accidentally caching content across security domains and could prevent malicious attackers from poisoning your cache.

Redefining the cache key

WARNING

By default, Fastly uses the URL and the Host of a request (plus a special, internal Fastly variable for purging purposes) to create unique HTTP objects. Although Fastly allows you to explicitly set the cache key to define this more precisely, changing the default behavior risks the following:

  1. If you add too much information to the cache key, you can significantly reduce your hit ratio.
  2. If you make a mistake when explicitly setting the cache key, you can cause all requests to get the same object.
  3. If you add anything to the hash, you will need to send a purge for each combination of the URL and value you add in order to purge that specific information from the cache.

To avoid these dangers, consider using the Vary header instead of following the instructions below.

Explicitly setting the cache key

You can set the cache key explicitly (including attaching conditions) by adding a request setting via the Settings page in the configuration controls and including a comma-separated list of cache keys. The values of the cache keys listed are combined to make a single hash, and each unique hash is considered a unique object.

For example, if you don't want the query string to be part of the cache key, but you don't want to change req.url so that the query string still ends up in your logs, you could use the following text for the hash keys:

req.url.path, req.http.host

In the web interface, the text would appear in the Cache keys field:

the advanced options of a new request setting page showing the contents of the cache keys field

As a general rule, you should always have req.url as one of your cache keys or as part of one.

Purging adjustments when making additions to cache keys

Because purging works on individual hashes, additions to cache keys can complicate purging URLs. However, it can also be simplified.

For example, if you were to change your cache key to just req.url and not the default req.url, req.http.host, then purging http://foo.example.com/file.html would also purge http://bar.example.com/file.html. Keep in mind this is because they're actually the same object in the cache!

On the other hand, if you were to change your cache key to req.url, req.http.host, req.http.Fastly-SSL, you would have to purge http://example.com/ and https://example.com/ individually.

In the latter case, if you were to use the Vary header instead of changing the cache key, you could still have different content on the two URLs, yet purge them with a single purge. In this case you would add a new Cache Header, use http.Vary as the Destination, and use the following as the Source:

if(beresp.http.Vary, beresp.http.Vary ",", "") "Fastly-SSL"

You can use a cookie as a cache key or just check for the presence of a cookie set to a specific value by controlling its request conditions. Both methods are simple and shown in the steps below.

Using a cookie as a cache key looks complicated but it's actually quite simple. Let's say your cookie is called "MyCookie" and it looks like mycookie=.

Create new headers

  1. Log in to the Fastly web interface.
  2. From the Home page, select the appropriate service. You can use the search box to search by ID, name, or domain. You can also click Compute services or CDN services to access a list of services by type.
  3. Click Edit configuration and then select the option to clone the active version.
  4. Click Content.
  5. Click Create header.

    the create header page

  6. Fill out the Create a header fields as follows:

    • In the Name field, enter Set MyCookie Header Default.
    • From the Type menu, select Request, and from the Action menu select Set.
    • In the Destination field, enter http.X-MyCookie.
    • In the Source field, enter "0" (with quotes).
    • Leave the Ignore if set menu set to the default, No.
    • In the Priority field, enter a number representing the order in which the header rule should execute. The default is set to 10 for new headers.
  7. Click Create. The new header appears in the Headers area of the Content page.

  8. Click Create header again and create a second new header by filling out the fields as follows:

    • In the Name field, enter Set MyCookie Header from Cookie.
    • From the Type menu, select Request, and from the Action menu select Set.
    • In the Destination field, enter http.X-MyCookie.
    • In the Source field, enter req.http.cookie:mycookie.
    • Leave the Ignore if set menu set to the default, No.
    • In the Priority field, enter a larger number than the priority of previous header you just created. For example, if you left the default priority set to 10, enter 20.
  9. Click Create. The second header appears in the Headers area of the Content page.

    example set myCookie headers in the headers area

Attach conditions to the new headers

  1. Click Attach a condition next to the Set MyCookie Header from Cookie header.

  2. Click Create a new request condition.

    the create a new request condition window

  3. Fill out the fields of the Create a new request condition page as follows:

    • In the Name field, enter Has MyCookie cookie.
    • In the Apply if field, enter req.http.cookie:mycookie.
  4. Click Save and apply to. The Headers area now displays the condition that must be met in order for your header to begin being used.

    example mycookie headers with conditions

  5. Click Settings.
  6. Click Create request setting.

  7. In the Name field, enter Set Hash from Cookie.

  8. Click Advanced options at the bottom of the page.

  9. In the Cache keys field, enter req.url, req.http.host, req.http.X-MyCookie

  10. Click Create.

  11. Click Attach a condition next to the new request.

    add a condition to the set hash from cookie request

  12. From the Select a condition menu, select Has MyCookie cookie. The Request settings area now displays the condition that must be met in order for your request to begin being used.

    example has mycookie cookie request with condition

  13. Click Activate to deploy your configuration changes.

An alternative way if you're just checking for the presence of the cookie set to some specific value (e.g., 1):

  1. Add a new Request setting where the Cache key field is set to req.url, req.http.host, "Has mycookie".
  2. Add a condition to that Request setting where the Apply if field contains req.http.cookie:mycookie.
Was this guide helpful?

Do not use this form to send sensitive information. If you need assistance, contact support. This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.