515/627
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache
had a value of HIT, HIT, MISS, MISS
.
Fastly has documentation on how to interpret the X-Cache
header.
Maximum possible points
100
What is this check, and why should you care
Using a CDN is extremely useful for caching purposes.
Maximum possible points
50
What is this check, and why should you care
The time that it takes for a user's browser to receive the first byte of page content.
The lower the TTFB, the faster your site will be perceived by the end user.
In order to get maximum points, your TTFB must be less than or equal to 30ms. If your TTFB is more than 1 second then you get no points here.
Maximum possible points
50
What is this check, and why should you care
Using ETag
identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match
with a value of W/"1744971652"
was sent, and an HTTP 304 was responded with.
See the Wikipedia page on ETag
for more background.
In order to get maximum points, you need to have ETag
identifiers and an HTTP 304 response must be received when using a valid If-None-Match
request header.
Maximum possible points
30
What is this check, and why should you care
Using Last-Modified
headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since
with a value of was sent, and an HTTP 304 was responded with.
Maximum possible points
30
What is this check, and why should you care
Having tiered caching can help improve the cache hit ratio of your site because it provides an additional layer of caching in front of your origin.
Maximum possible points
25
What is this check, and why should you care
Caching HTTP 404s is a great way to offload requests from your origin.
In order to get maximum points, you need to have the ability to cache an HTTP 404 for any amount of time.
This check requested the URL https://www.nestlejobs.com/cachingscorebrokenurltest.
Maximum possible points
20
What is this check, and why should you care
Javascript aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
Drupal 9.5+ introduces a new debug setting to make it easier to debug render caching. This setting will add cache debugging output for each rendered element.
The main issue with this is that this slows down your page loads (on top increasing your page weight).
In order to get maximum points, you must disable the render cache debug.
Maximum possible points
10
What is this check, and why should you care
Drupal 7+ provides a Statistics module to which records content view statistics in Drupal's database.
The main issue with this module is that it sends an un-cacheable HTTP POST request to your site to record a 'content view' statistic. This does not scale well as you Drupal site gets more traffic.
In order to get maximum points, you must disable the statistics
module.
Maximum possible points
10
What is this check, and why should you care
Drupal 8+ uses Twig for templating, and the Twig template engine offers a debug tool to which emits out a list of template filenames in the HTML source.
The main issue with this is that you often also have other Twig related performance issues as well, e.g. automatic reloading.
In order to get maximum points, you must disable Twig debug.
Maximum possible points
10
What is this check, and why should you care
There is a SPAM protection module in Drupal called Honeypot.
The honeypot module has a feature that adds a time based hidden form field to forms to protect against bots filling them in too quickly. This is a nice feature, however it happens to disable caching for the entire page. This is terrible for high traffic sites.
It is recommended to disable this time based feature, and only use the core honeypot feature of a hidden input field.
Maximum possible points
5
What is this check, and why should you care
There are 2 filesystems in Drupal - public files and private files.
Private files force Drupal to bootstrap in order to serve the file, and access control is checked every single time. This is useful for sensitive files, but a hindrance when your site is under high load.
It is recommended to use Drupal's public file system for static, non-sensitive files, and reserve the use of private files for dynamic, or sensitive files.
Maximum possible points
5
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
In order to get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
Current cache lifetime is 86400 seconds (1 day).
You can read more about which headers Fastly uses to indicate the cache lifetime.
Maximum possible points
100
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding
had a value of gzip
.
Fastly has documentation on how to enable automatic compression.
See the Wikipedia page on HTTP compression for more background.
In order to get maximum points, you need to use Brotli
or Zstandard
compression.
Maximum possible points
20
What is this check, and why should you care
Drupal 8+ provides an Internal Page Cache module that is recommended for small to medium-sized websites.
There is extremely limited value in using this module, even when you are using Fastly and having a relatively high cache lifetime of 1 day.
In order to get maximum points, you must have the module page_cache
disabled.
See Drupal's documentation on the Internal Page Cache module. Also, Wim Leers wrote a really awesome blog post on the release of this module with important background.
Maximum possible points
20
What is this check, and why should you care
CSS aggregation reduces the number of assets your site needs to download. The filename contains a hash of all the file contents, meaning you can cache these files for an extremely long time with no negative consequences.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
FBCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
You can add this VCL snippet to your Fastly service (in the recv
subroutine). Fastly documentation on querystring.filter
.
This check requested the URL https://www.nestlejobs.com/?fbclid=1745027430.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
GCLID and GCLSRC are two such parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read it from the browser URL.
You can add this VCL snippet to your Fastly service (in the recv
subroutine). Fastly documentation on querystring.filter
.
This check requested the URL https://www.nestlejobs.com/?gclsrc=1745027431&gclid=1745027431.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
TTCLID is one such parameter that can be stripped by your caching server. This query parameter only really serves a purpose for Javascript to read, and Javascript can still read it from the browser URL.
You can add this VCL snippet to your Fastly service (in the recv
subroutine). Fastly documentation on querystring.filter
.
This check requested the URL https://www.nestlejobs.com/?ttclid=1745027431.
Maximum possible points
10
What is this check, and why should you care
You can increase the cache hit rate of your site by stripping certain query parameters from the cache key.
UTM is a collection of parameters that can be stripped by your caching server. These query parameters only really serve a purpose for Javascript to read, and Javascript can still read them from the browser URL.
You can add this VCL snippet to your Fastly service (in the recv
subroutine). Fastly documentation on querystring.filter
.
This check requested the URL https://www.nestlejobs.com/?utm_source=1745027432&utm_medium=1745027432&utm_campaign=1745027432&utm_id=1745027432.
Maximum possible points
10
Performed on the asset: https://www.nestlejobs.com/modules/custom/nc_logo_block/assets/images/nestle-grey-logo.png
See the HTTP headers for this image file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache
had a value of HIT, HIT, HIT, HIT, MISS
.
Fastly has documentation on how to interpret the X-Cache
header.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
In order to get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
Current cache lifetime is 5509840 seconds (2 months and 1 week).
You can read more about which headers Fastly uses to indicate the cache lifetime.
Maximum possible points
10
What is this check, and why should you care
Using ETag
identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match
with a value of "f+cqu5sLdFCVQmp7Atrn2Ajt2O70jfLRcKj2LTknlpE"
was sent, but an HTTP 304 was not responded with. So you have Etags, but they are not doing anything.
See the Wikipedia page on ETag
for more background.
In order to get maximum points, you need to have ETag
identifiers and an HTTP 304 response must be received when using a valid If-None-Match
request header.
Maximum possible points
3
What is this check, and why should you care
Using Last-Modified
headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
No Last-Modified
header was found in the response.
Maximum possible points
3
Performed on the asset: https://www.nestlejobs.com/libraries/slick-carousel/slick/slick.css?suwppc
See the HTTP headers for this CSS file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache
had a value of HIT, HIT, MISS, MISS
.
Fastly has documentation on how to interpret the X-Cache
header.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
In order to get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
Current cache lifetime is 31622400 seconds (1 year and 1 month).
You can read more about which headers Fastly uses to indicate the cache lifetime.
Maximum possible points
10
What is this check, and why should you care
Using ETag
identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match
with a value of W/"67ffcd7f-6f0"
was sent, and an HTTP 304 was responded with.
See the Wikipedia page on ETag
for more background.
In order to get maximum points, you need to have ETag
identifiers and an HTTP 304 response must be received when using a valid If-None-Match
request header.
Maximum possible points
3
What is this check, and why should you care
Using Last-Modified
headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since
with a value of was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding
had a value of gzip
.
Fastly has documentation on how to enable automatic compression.
See the Wikipedia page on HTTP compression for more background.
In order to get maximum points, you need to use Brotli
or Zstandard
compression.
Maximum possible points
2
Performed on the asset: https://www.nestlejobs.com/sites/default/files/google_tag/nestle_container/google_tag.script.js?suwppc
See the HTTP headers for this Javascript file.
What is this check, and why should you care
Having a cache hit ensures the fastest possible delivery of content to end users.
The response header X-Cache
had a value of HIT, HIT, MISS, MISS
.
Fastly has documentation on how to interpret the X-Cache
header.
Maximum possible points
10
What is this check, and why should you care
Using a long cache lifetime helps to ensure a high cache hit rate.
In order to get maximum points, your cache lifetime must be greater than or equal to 4 weeks. If your cache lifetime is less, then you will get some proportion of the score based on how close to 4 weeks you are.
Current cache lifetime is 31622400 seconds (1 year and 1 month).
You can read more about which headers Fastly uses to indicate the cache lifetime.
Maximum possible points
10
What is this check, and why should you care
Using ETag
identifiers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. This mechanism allows caches to be more efficient and saves bandwidth, as a Web server does not need to send a full response if the content has not changed. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-None-Match
with a value of W/"68021820-15c"
was sent, and an HTTP 304 was responded with.
See the Wikipedia page on ETag
for more background.
In order to get maximum points, you need to have ETag
identifiers and an HTTP 304 response must be received when using a valid If-None-Match
request header.
Maximum possible points
3
What is this check, and why should you care
Using Last-Modified
headers is an easy way to ensure your visitors are always getting the most up-to-date version of the content. HTTP 304 responses are used to indicate this is working.
An HTTP request with the request header If-Modified-Since
with a value of was sent, and an HTTP 304 was responded with.
Maximum possible points
3
What is this check, and why should you care
The purpose of HTTP compression is to reduce the size of the files sent by a CDN/web server by eliminating redundant information in those files. The smaller the size of the files, the more quickly they can be served over the World Wide Web.
On top of faster delivery, compression also reduces the amount of bandwidth used by the CDN/web server. This is especially important for mobile devices, where the bandwidth is often limited.
The response header Content-Encoding
had a value of gzip
.
Fastly has documentation on how to enable automatic compression.
See the Wikipedia page on HTTP compression for more background.
In order to get maximum points, you need to use Brotli
or Zstandard
compression.
Maximum possible points
2
Name | Value |
---|---|
Status Code | HTTP 200 |
Accept-Ranges | bytes |
Age | 6679 |
Cache-Control | max-age=86400, public |
Connection | keep-alive |
Content-Encoding | gzip |
Content-Language | en |
Content-Length | 42078 |
Content-Type | text/html; charset=UTF-8 |
Date | Sat, 19 Apr 2025 01:50:30 GMT |
Etag | W/"1744971652" |
Expires | Sun, 19 Nov 1978 05:00:00 GMT |
Fastly-Debug-Digest | b3d22c52d1ede813a7502088627d4c5621177a6f6eee73febf08b6235ba234ec |
Fastly-Debug-Path | (D cache-wsi-ysbk1060070-WSI 1745027430) (D cache-wsi-ysbk1060070-WSI 1745027430) (F cache-wsi-ysbk1060070-WSI 1745027430) (D cache-wsi-ysbk1060070-WSI 1745027430) (F cache-wsi-ysbk1060057-WSI 1745000825) (D cache-chi-kigq8000120-CHI 1745000825) (F cache-chi-kigq8000120-CHI 1745000821) |
Fastly-Debug-TTL | (M cache-wsi-ysbk1060070-WSI 31326219.029 86400.000 6679) (M cache-wsi-ysbk1060070-WSI 31326219.029 86400.000 6679) (M cache-wsi-ysbk1060070-WSI 31326219.029 86400.000 6679) (H cache-chi-kigq8000120-CHI 86396.008 604800.000 4) |
Last-Modified | Fri, 18 Apr 2025 10:20:52 GMT |
Server | nginx |
Surrogate-Key | KUuLHysM11Aw+g+cn2Fg y2xrrKtRuSF+kVdC0hUp 3b9K0ZGBgSp0/J/BBabs 7q6sTd+YiM+LphaePssL 7Y5ETuu++eFNbuo6wjhE gkayEB4+cSI1VYUV9mrC qjqX50wPKjjqvjFZh1yg aEg/XG1qiZWX+y8dizwu I5ABZa4bnytGhW4GZlKk 4O/lQHGpLkCDYVK5lyfP prhQAIvh5U6Ik/jlELsg EUnUirutntLW11xCR8k6 UyB3H3n3E3aIuwiDNe/+ cA6q0dvBU0cGsn4ttsb5 zhlPIl4x5K3SLLC43pmI vYROmb0zIeiobjrA6Iq+ wnJzxhd0JDMuX0gV8Tc0 ssRqm7TMOl2jM0aWI9Pt A7yhh1bHG3R4eXwF2PPg qY2HJhTZh2YvuWlVn5SK TyEOjBEhyHOdr5mURKog aqkdJjcY2WBMrTkPRGXf iiNNpJ/6/oOz+cVBAdDF XP26LnN/TeNakeGZHTEq 61Vj89GBeLJV7VmvRL70 DN8c7XEvvvnS2SAm6cpj 0tl2Zh9Tuh/cOZypxkWx ZKzzTDrU1G3inQDads9v CZkXrFu5vPqdB0qQKn9g oR65BlCykmhaK7NF9+pC qN4CG2+kIuTx4tWdRMOq 0hbpMsnBI+PDE8F78lKc QmhlEsbJC88ce0/s9KtQ qkrnm6dBa7X8tGYet58+ moq0xZpDfy+Uj39ppUD8 Xs78toKrmIbaNl+GhUI6 1bcGUpyrqvykfXEl7N/M NaLATJ29Bf+p6Q29qEmo J69q9JqGfbc/1GNFNVrI asp1qv9eZFaIs4hU/Tps Zkl0lfYUncuKQx7AxauP bNbpuzLUMUi7pR0+4wnj Jb/7II9e8PYTAsIuLYYk El5BEeFdQHya+7y5lwI4 /aesIByWJ/yfz4LcopH5 IRLbIYYZcLOdKj18G8Qk CZBILRBBtsiti3M9eRl+ M4UaJu+kZBpOfJibpxOm hQXovvHdZ4K/tTKope6d y3aGqK6rI6v9oCxWLBTa Ihdj8MO9a8PYDZHOZaJV GlLePjde+4Xa/GItvbjH vnzhX4+ZZ614+uzf2OUC suk2VCjWIl3YlmODnp/3 mml4GHCi26daCqN6s7YE p8Qf1vM+LbjLCMSaeguP SO2hiE4GlBmH+oNc3Gki wkc8s1qn/Mk621eoP062 jFwc+4eivtkyT9iuWtSG QYP3y0ziNgyiHPjItg4B +ov3UDl74TnEc+c0mjPi /YoWxsABgzMBFidYJf6t kLkCjzuK1dyWs/mAYd9l GSVA3vx7Jo/bcTlMfnvQ Vw8Xv0YzkoAgjlL0puWs YuKrW3WkMCCweMe5nW0m xqFYuJys2/zeIWkZ45NG ASt0czdYMvCWFA9DUTeQ NeeNHr7gcGjgs4X7Qwan uotdZ89J7YuKAOQsaV2Z xFP7AQaHEzCLLqMEGdqm LlQ0DdAZd6MIhU2dV50j TpYDKH2rIhUCBqHSdVmT Px7enmH7l7dL/3uecy4H PTJtDeLjStiiJL+ivNaI Bi6ctVS2zGUhwpTpl9NR zB3tq+Bn6FL9Z2zELs3F fQFu8AM6PUYnmXongeUq mT0X6CCbdttq5sMCq7H5 7igCmfjYBqiTkUMC/Mjf I9bGCp9VOsyrfQMxT1Uw pMrese3i4JfZZ9mhDtLT A1BgZHOkm/n3tXx6reh8 gj7DbNBbKDMem6zrJ/oM LdMq4ilKHlXmrYsh4E8h Cdp0sRQkDqokIRr9xy/R JbUa4zGZBoHdiNvBEiWV aeyYq0frSJbjbt8UHPIU RqGmn/NtIh0mUg8r3mdC NBuar2PqO//dxZt6k4en r7mZamn/gRAAtiOh37rw Tyf3JMksfTkcdqs672QQ kbyrDMolaWKmr2pzF+xP zPC5vAjbeHrF1IVnAWre D9nm0+Iavc7q6VRgOXvQ QHbY7FlQImolpvtGTHPV fO8yb8n244pVKy0+HuWJ HpNgcQoJSH29OotnJ/Ld pAd5rsKt2369ydvlRw+t iroKderm/j410tHuwS31 GW1j4o/MUx83Ou+JKCFR O7tXDNnrlaoqXMzZQfCV RgNbMrdUYbL7VF8zYXsp 8dHAmM9zSWnrrqsAidMZ MQnmigyl4vd4YOmYaAdl VFkleMgs2CV52E9I+T0H NmHvg6N4bOoYnDq3RGvb cm7rxI9UJ2S0AdKnavPB teMLB2FgjFg733p/nJD2 BCqh6u4kfSmL8XyMbLvI jIfMPlz0fjMuYkdmUgY7 3ZjK9qqoYOCbHKRTc+bf Zd0tvA3FgT+pwGN8PVSq LZzrjCBSx+s8Hx2TY9gJ fjfD4V/gsSwLV9Ny04PV k2cR0anxZ4cc+p9hmtW9 aAiHWI1bnQgmsYmjBB1y XbZgxPy6bdNyUMApWw5s uGeBYl9fkF/3BdYfzoSP M64HHBeOyOEGxqYetLA8 igTGDKc6oWA0aBj7Q2aj uocUZ+IU47jJgkjdu21l tV7L/zGqx1S3C7+SyeL9 sGcNd91FSUgwJyJYaNJN |
Vary | Accept-Encoding, Cookie, Cookie, Cookie |
Via | 1.1 varnish, 1.1 varnish, 1.1 varnish, 1.1 varnish |
X-Cache | HIT, HIT, MISS, MISS |
X-Cache-Hits | 1, 0, 0, 0 |
X-Drupal-Cache | HIT |
X-Drupal-Dynamic-Cache | UNCACHEABLE |
X-Pantheon-Styx-Hostname | styx-fe2-b-7b5dbfcc48-qlb2z |
X-Served-By | cache-chi-kigq8000120-CHI, cache-wsi-ysbk1060070-WSI, cache-wsi-ysbk1060070-WSI, cache-wsi-ysbk1060070-WSI |
X-Styx-Req-Id | b8345dc9-1c82-11f0-8db5-1e64d23029a2 |
X-Timer | S1745027430.239554,VS0,VE5 |
version-epoch | 102 |
You can use the following cURL
command:
curl -sLIXGET -H 'Fastly-Debug: 1' -H 'Accept-Encoding: br, zstd, gzip, deflate' 'https://www.nestlejobs.com/' | sort