Wp-Cache2 is a WordPress Plugin to cache WordPress generated pages. Wp-Cache2 es un plugin para WordPress WordPress caché de páginas generadas. However it doesn’t work with in-built gzip compression. Sin embargo, no funciona con construido en la compresión gzip. Lets see how we can solve it. Vamos a ver cómo podemos solucionarlo.

Wp-Cache 2 significantly increases performance of WordPress enabled websites. Wp-Cache 2 aumenta significativamente el rendimiento de WordPress habilitado sitios web. Additionally it drastically reduces the processing load on the machine. Además, reduce drásticamente la carga de procesamiento en la máquina. It is intelligent to understand when to refresh the cache based on author / publisher activity. Es inteligente para comprender cuando para refrescar la memoria caché sobre la base de autor / editor.

This blog uses Este blog utiliza wp-cache 2 WP-cache 2 .

It comes with some costs. Viene con algunos costes. It doesn’t allow you to compress your output in gzip format, a facility provided by WordPress. No le permiten comprimir su salida en formato gzip, un sistema proporcionado por WordPress.

BTW: wp-cache-2 doesn’t work on Windows based servers. BTW: wp-cache-2 no funciona en los servidores basados en Windows.

The solution is to use Apache La solución es usar Apache mod_deflate module. módulo.

A simple configuration (add in httpd.conf) might be: Una simple configuración (agregar en httpd.conf) podría ser:

 AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php AddOutputFilterByType deflactar text / html text / plain text / xml application / x-httpd-php 

This assumes you have mod_deflate loaded. Esto presupone que se han cargado mod_deflate. If not load it first: Si no se carga por primera vez:

 LoadModule deflate_module modules/mod_deflate.so LoadModule deflate_module modules / mod_deflate.so 

Let me know your experience with this. Quiero saber su experiencia con esto.