adrelanos Asked: 2020-06-19 10:26:25 +0800 CST2020-06-19 10:26:25 +0800 CST 2020-06-19 10:26:25 +0800 CST Can nginx proxy_cache replace fastcgi_cache? 772 If nginx is already used with proxy_cache, is there still any need to use fastcgi_cache? In other words.. When using nginx proxy_cache, there is no more need for fastcgi_cache? cache fastcgi nginx 1 Answers Voted Michael Hampton 2020-06-19T10:31:19+08:002020-06-19T10:31:19+08:00 The caching mechanism is the same. The difference is that you must use proxy_cache directives if you are proxy_passing to a backend app, and you must use fastcgi_cache when you fastcgi_pass to a backend app.
The caching mechanism is the same. The difference is that you must use
proxy_cache
directives if you areproxy_pass
ing to a backend app, and you must usefastcgi_cache
when youfastcgi_pass
to a backend app.