Today I’d demonstrate how to enable HTTP response caching in OpenResty Edge.

Embeded image

When the client requests hit the cache on the Edge Node server, no requests need to be sent to the backend server. This reduces response latency and saves network bandwidth.

Embeded image

Enable response caching for the sample application

Let’s go to the OpenResty Edge’s Admin web console. This is our sample deployment of the console. Every user has her own deployment.

We can continue with our previous application example, test-edge.com.

Screenshot

We already have an upstream defined.

Screenshot

This my_backend upstream has only 1 backend server.

Screenshot

Note the IP address of the backend server ends with number 191. We will use this IP address later.

Screenshot

And we also have a page rule already defined.

Screenshot

This page rule sets up a reverse proxy to this upstream.

Screenshot

Apparently we haven’t enabled the proxy cache for this page rule yet.

Now let’s edit this page rule to add response caching in the gateway.

Screenshot

Let’s enable the proxy cache.

Screenshot

Here we can configure the cache key.

Screenshot

By default, the cache key consists of two components: the URI, and the query string.

You can choose to use other kinds of key components.

Screenshot

Screenshot

Or we can remove the whole query string from the key.

Screenshot

We can also add even more key components.

Screenshot

For this example, we’ll just keep the default cache key.

Save this page rule.

Screenshot

Let’s make a new release.

Screenshot

Push out our pending changes.

Screenshot

Ship it!

Screenshot

Our new release is now synchronized to all our gateway servers.

Screenshot

Our configuration changes do NOT require server reload, restart, or binary upgrade. So it’s very efficient.

Embeded image

Test the response caching

Let’s test a gateway server for caching.

Screenshot

We copy the IP address of this San Francisco gateway server.

Screenshot

Note the last number of this IP address is 133.

On the terminal, we send an HTTP request to this gateway server via the curl command-line utility.

curl -I -H 'Host: test-edge.com' http://138.68.231.133/

Note the Cache-Status: MISS response header returned.

screenshot 1

Do it again.

curl -I -H 'Host: test-edge.com' http://138.68.231.133/

We are still getting the Cache-Status: MISS header. It means that the cache is not used at all. Why? Because the original response header from the backend server lacks headers like Expires and Cache-Control.

screenshot 3

We can log onto the backend server.

ssh ec2-user@54.213.103.191

Recall that the backend server’s IP address ends with 191.

screenshot 5

This backend server runs the open source OpenResty software.

ps aux | grep nginx

screenshot 7

The backend server may run any other software that speaks HTTP.

screenshot 7

We can send a test request to this backend server directly.

curl -I -H 'Host: test-edge.com' http://127.0.0.1/

Note that we are accessing the local host.

screenshot 9

Okay, it indeed does not provide any Expires or Cache-Control headers.

screenshot 11

Now let’s re-configure our backend server.

cd /usr/local/openresty/nginx/

Open the nginx configuration file.

sudo vim conf/nginx.conf

Find our root location, location /.

screenshot 15

And add an expiration time of 1 hour.

expires 1h;

Note that the backend server can define different expiration times for different locations. Or disable the cache completely for certain responses.

screenshot 16

Save and quit the file.

Test if the nginx configuration file is correct.

sudo ./sbin/nginx -t

Good.

screenshot 19

Now reload the server.

sudo kill -HUP `cat logs/nginx.pid`

screenshot 21

Note that for open source Nginx servers, the configuration is also the same.

Time to test the backend server again.

curl -I -H 'Host: test-edge.com' http://127.0.0.1/

Yay! It responds with the Expires and Cache-Control headers now.

screenshot 23

Send the request to the gateway server instead.

curl -I -H 'Host: test-edge.com' http://138.68.231.133/

It still shows the Cache-Status: MISS header.

screenshot 25

It is an expected cache miss. Because this is our very first request.

screenshot 26

Send the request again.

curl -I -H 'Host: test-edge.com' http://138.68.231.133/

Great! We finally see the Cache-Status: HIT header!

screenshot 28

So it is now a cache hit as expected.

screenshot 29

If we add a query string,

curl -I -H 'Host: test-edge.com' 'http://138.68.231.133/?a=3'

Note the a=3 part.

screenshot 31

then it will be a cache miss again.

This is because the default cache key includes the query string.

screenshot 33

Running the same request again should result in a cache hit.

curl -I -H 'Host: test-edge.com' 'http://138.68.231.133/?a=3'

It’s indeed a cache hit now. If you don’t care about the query string, you can remove it from the cache key.

screenshot 35

Sometimes we are just too lazy to change the backend server’s configuration. Then we can also enforce caching for responses without any cache controlling headers in the gateway.

We can change our original page rule to enable this feature.

We enforce caching by default.

Screenshot

We can set the default expiration time for cacheable response status codes.

Screenshot

We’ll demonstrate this feature in another video.

If you like this tutorial, please subscribe to this blog site and/or our YouTube channel. Thank you!

About The Author

Yichun Zhang (Github handle: agentzh), is the original creator of the OpenResty® open-source project and the CEO of OpenResty Inc..

Yichun is one of the earliest advocates and leaders of “open-source technology”. He worked at many internationally renowned tech companies, such as Cloudflare, Yahoo!. He is a pioneer of “edge computing”, “dynamic tracing” and “machine coding”, with over 22 years of programming and 16 years of open source experience. Yichun is well-known in the open-source space as the project leader of OpenResty®, adopted by more than 40 million global website domains.

OpenResty Inc., the enterprise software start-up founded by Yichun in 2017, has customers from some of the biggest companies in the world. Its flagship product, OpenResty XRay, is a non-invasive profiling and troubleshooting tool that significantly enhances and utilizes dynamic tracing technology. And its OpenResty Edge product is a powerful distributed traffic management and private CDN software product.

As an avid open-source contributor, Yichun has contributed more than a million lines of code to numerous open-source projects, including Linux kernel, Nginx, LuaJIT, GDB, SystemTap, LLVM, Perl, etc. He has also authored more than 60 open-source software libraries.