I use Wordpress’ REST API post feed to embed articles on an external site. My 
articles are updated fairly seldom, so there’s probably no need to dynamically 
compile every request response. I’m thinking of using fastcgi cache to cache 
the feed.

I’m currently skipping caching for all requests with a $query_string. However, 
the REST API URL’s also contain a query string and thus don’t currently get 
cached.

        if ($query_string != "") {
                set $skip_cache 1;
        }

Is it possible to cache the REST API URL’s but skip cache for all other URL’s 
containing a $query_string?


--
Palvelin.fi Hostmaster
[email protected]

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to