5 Golden Tips For WordPress Performance Optimization / Slashdot-Digg Protection 5 consejos de oro para la optimización de rendimiento de WordPress / Slashdot, Digg protección
WordPress is a popular blogging software. WordPress es un popular software de blogs. As a design decision it stores the blog content in database and uses php to fetch and display the pages. Como decisión de diseño que almacena el contenido del blog en la base de datos y aplicaciones php para buscar y visualizar las páginas. This consumes more resources (cpu and memory) than blogging softwares generating static pages. Esto consume más recursos (CPU y memoria) que la generación de software de blogs de páginas estáticas. Here are 5 tried and tested power tips to reduce memory & cpu resources and speed up your wordpress based sites. Aquí hay 5 probados y consejos para poder reducir la memoria y cpu recursos y aumentar la velocidad de tu wordpress basado sitios.
Speed up PHP code execution. Acelerar la ejecución de código PHP.
There are several php code accelerators available. Hay varios aceleradores de código php. I Yo recommend eAccelerator recomendar eAccelerator based on performance and stability. sobre la base del desempeño y la estabilidad. Use it with at least 128MB RAM ( eaccelerator.shm_size = “128″ ). Úselo con al menos 128 MB de RAM (eaccelerator.shm_size = "128"). You will observe significant performance benefit from this. Usted va a observar importantes de los resultados de este beneficio. Note the average cpu utilization before and after. Tenga en cuenta la media de utilización de la CPU antes y después.
Optimize MySQL server installation Optimizar la instalación del servidor de MySQL
MySQL on Linux get installed by default with minimal configuration which is suitable for low end machine. MySQL en Linux se instalan por defecto con un mínimo de configuración que sean adecuados para su máquina de gama baja. It doesn’t make use of the memory of your system you may have. No hacer uso de la memoria de su sistema que usted pueda tener. There are several online guide to configure mysql for better memory utilization and overall optimum performance. Hay varios guía en línea para configurar mysql para una mejor utilización de memoria y, en general, un rendimiento óptimo. I used the following settings: He utilizado los siguientes valores:
key_buffer = 256M key_buffer = 256M
max_allowed_packet = 1M max_allowed_packet = 1M
table_cache = 256 table_cache = 256
sort_buffer_size = 1M sort_buffer_size = 1M
read_buffer_size = 1M read_buffer_size = 1M
read_rnd_buffer_size = 4M read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M myisam_sort_buffer_size = 64M
thread_cache_size = 8 thread_cache_size = 8
query_cache_size= 16M query_cache_size = 16M
Read the fine manual for explanations on each of these settings , Lea el manual de explicaciones sobre cada una de estas opciones ![]()
You may also want to enable slow query log and identify the slow queries. También puede permitir lento registro de consultas e identificar las preguntas lento. Progressively reduce the time as you better optimize the queries. Reducir progresivamente el tiempo que usted la mejor optimización de consultas.
Slim & trim WordPress. Slim & trim WordPress.
WordPress is supported by tons of free and paid plugins. WordPress es el apoyo de toneladas de gratuitos y de pago plugins. However many of them are not optimized. Sin embargo, muchos de ellos no están optimizadas. The slow query log step above should help you to identify the slow queries. El lento registro de consultas por encima de paso le ayudará a identificar la lentitud de las consultas. Search the plugin source code to identify the plugins responsible. El plugin de búsqueda de código fuente para identificar el responsable plugins. Work, politely, with the authors to resolve the issue. El trabajo, educadamente, con los autores para resolver el problema. If that doesn’t work, look for alternatives or disable the plugin. Si esto no funciona, buscar alternativas o desactivar el plugin. Plugins should be used in moderation. Los complementos deben utilizarse con moderación. Prefer plugins for functionality rather than cool / wow factor. Prefiero complementos para la funcionalidad en lugar de enfriar / wow factor. Many plugins imposes a significant cost in terms of resource and performance. Muchos plugins impone un costo significativo en términos de recursos y el rendimiento.
Staticize your pages. Estatiza sus páginas.
wp-cache 2 is a WordPress plugin which will cache your page output in a file ( wp-cache 2 es un plugin WordPress que su caché de la página de salida en un archivo ( download descargar ). For future requests of the same page it serves the content directly from the file thereby bypassing the need for database queires and further php code execution. Para futuras solicitudes de la misma página que sirve directamente el contenido del archivo saltándose así la necesidad de una base de datos más queires y la ejecución de código php. It recognizes when any page content has changed. Se reconoce cuando ningún contenido de la página ha cambiado. Unfortunately it then invalidates the whole cache instead of the page itself and other pages which are likely to change. Por desgracia, entonces invalida toda la caché en vez de la propia página y otras páginas que pueden cambiar.
It will also invalidate the whole cache it a comment is added to any post. Asimismo, invalidar todo el caché que un comentario se añade a cualquier puesto. This is a problem for highly commented blogs. Este es un problema muy comentado por los blogs. I had posted a solution to this problem: Me ha publicado una solución a este problema: How To Improve Performance of Highly Commented WordPress Blogs Cómo mejorar el rendimiento de muy comentados los blogs de WordPress .
At some point you still will have to move to a better server - from shared hosting to En algún momento usted todavía tendrá que pasar a un mejor servidor - de hosting compartido para VPS (virtual private server) VPS (Virtual Private servidor) and then from VPS to dedicated server(s). y luego de VPS para servidor dedicado (s). And then you may have to use a caching reverse proxy server for load balancing between multiple apache servers. Y entonces puede que tenga que utilizar una memoria caché de un servidor proxy inverso para balanceo de carga entre múltiples servidores Apache. Trust me you will want to face this type of challenges for now in you are in the big league Confía en mí usted desea para hacer frente a este tipo de problemas por el momento en que se encuentran en las grandes ligas ![]()
Filed under Filed under Headline News Headline News , How To Cómo , Linux , Pro Blogging Blogging Pro , Technology Tecnología , Web , Web 2.0 Web 2,0 , Web Hosting Web Hosting , Web Services Web Services , WordPress , WordPress Plugin WordPress Plugin | |
| |
RSS 2.0 RSS 2,0 | |
Trackback this Article | este artículo |
Email this Article Enviar artículo
You may also like to read También puede leer |




