WordPress Caching with Nginx and Redis
eamann.com
WordPress Caching with Nginx and Redis
1–10 of 25 posts
Re: WordPress Caching with Nginx and Redis
#2Re: WordPress Caching with Nginx and Redis
#3Re: WordPress Caching with Nginx and Redis
#4if you're technical enough to set up Redis I'd think you're technical enough to ditch Wordpress silliness and just publish statically.
Re: WordPress Caching with Nginx and Redis
#5A gist of the entire Predis library on the blog post? That's a bit… inefficient… to say the least.
Re: WordPress Caching with Nginx and Redis
#6Re: WordPress Caching with Nginx and Redis
#7if you're technical enough to set up Redis I'd think you're technical enough to ditch Wordpress silliness and just publish statically.
Re: WordPress Caching with Nginx and Redis
#8You could do exactly the same with nginx or Varnish acting as reverse caching proxies. Cool hack, but nothing I would ever run in production when you have all the other good tools at your disposal. Tools that are proven and that actually scale.
Seems he can accomplish the same with Nginx itself (which he's already using -- though not certain of the details if u are serving PHP via nginx itself too).
There is a place for a Memcached/Redis type role in generating a Wordpress page. Tools like W3 Total cache store certain small elements of the page in Memecached. So, could see Redis being used there. But for blind full page caching, Nginx can do that job.
Re: WordPress Caching with Nginx and Redis
#9You could do exactly the same with nginx or Varnish acting as reverse caching proxies. Cool hack, but nothing I would ever run in production when you have all the other good tools at your disposal. Tools that are proven and that actually scale.
Yep, here, Redis is an unnecessary component, since he is caching the entire HTML page it seems, in Redis. Seems he can accomplish the same with Nginx itself (which he's already using -- though not certain of the details if u are serving PHP via nginx itself too). There is a place for a Memcached/Redis type role in generating a Wordpress page. Tools like W3 Total cache store certain small elements of the page in Meme…
Re: WordPress Caching with Nginx and Redis
#10You could do exactly the same with nginx or Varnish acting as reverse caching proxies. Cool hack, but nothing I would ever run in production when you have all the other good tools at your disposal. Tools that are proven and that actually scale.
Yep, here, Redis is an unnecessary component, since he is caching the entire HTML page it seems, in Redis. Seems he can accomplish the same with Nginx itself (which he's already using -- though not certain of the details if u are serving PHP via nginx itself too). There is a place for a Memcached/Redis type role in generating a Wordpress page. Tools like W3 Total cache store certain small elements of the page in Meme…