Cache Miss in --wpredis

Linode running Ubuntu 16.04 LTS…

Installed using --wpredis command. Logged in to the wp dashboard and enabled Object Cache in Redis Object Cache plugin.

curl -I mysite.com returns the following:

HTTP/1.1 200 OK

Server: nginx

Date: Thu, 01 Sep 2016 16:46:56 GMT

Content-Type: text/html; charset=UTF-8

Connection: keep-alive

Vary: Accept-Encoding

Link: http://chinatraders.in/wp-json/; rel=“https://api.w.org/

X-SRCache-Fetch-Status: MISS

X-SRCache-Store-Status: BYPASS

X-Powered-By: EasyEngine 3.7.4

why is that a MISS? Haven’t changed anything at all.

When I run:

curl -X GET -I http://chinatraders.in

Here’s what I see:

HTTP/1.1 200 OK
Server: nginx
Date: Fri, 02 Sep 2016 16:02:41 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 14707
Connection: keep-alive
Vary: Accept-Encoding
Link: <http://chinatraders.in/wp-json/>; rel="https://api.w.org/"
X-SRCache-Fetch-Status: HIT
X-SRCache-Store-Status: BYPASS
X-Powered-By: EasyEngine 3.7.4

So looks like Redis cache is working fine.

1 Like

Glad that it’s working fine. I tried both in my mac’s terminal as well as with in the VPS itself. What might be the cause?