I believe that detecting the prescense of cookies, HTTP methods and and request paramters are all supported using the buitlin "if" block and standard HTTP module variables.
WordPress Caching with Nginx and Redis
21–25 of 25 posts
Re: WordPress Caching with Nginx and Redis
#22"best of all, it’s open source" -- Open Source should never be the tickbox on a feature set that wins over another product. Look what the product provides now and into the future with the less work -- just because you can change or view the source code doesn't mean it's going to grow with you.
Re: WordPress Caching with Nginx and Redis
#23if you're technical enough to set up Redis I'd think you're technical enough to ditch Wordpress silliness and just publish statically.
Setting up redis very simple. Ditching WP isn't.
Re: WordPress Caching with Nginx and Redis
#24if you're technical enough to set up Redis I'd think you're technical enough to ditch Wordpress silliness and just publish statically.
But you might run the blog with someone who isn't. Or be running the blog for someone else. Setting up varnish is another option that's likely even better (didn't read the details of the post, but it looks like it always hits a php script to get the cache).
Re: WordPress Caching with Nginx and Redis
#25Earlier quoted context omitted.
You are talking about two different things here. Memcached is a memory store, while APC is a opcode cacher. W3 seems to be a plugin for Wordpress that serves pre-rendered pages using some mod_rewrite trickery.
I meant under W3 there are more than one option for cache storage. http://i.imgur.com/OjbyvF2.png and APC is faster than memcached in a single server environment http://stackoverflow.com/questions/1794342/memcache-vs-apc-f... . I assume that most people using php most likely already have apc installed (or they really should).