WordPress is a popular blogging software. WordPress è un popolare software blogging. As a design decision it stores the blog content in database and uses php to fetch and display the pages. Come un disegno o modello decisione memorizza i contenuti del blog nel database e usa PHP per scaricare e visualizzare le pagine. This consumes more resources (cpu and memory) than blogging softwares generating static pages. Questo consuma più risorse (cpu e della memoria) che il blogging software di generazione pagine statiche. Here are 5 tried and tested power tips to reduce memory & cpu resources and speed up your wordpress based sites. Qui sono 5 collaudata potere suggerimenti per ridurre l'uso della memoria e risorse della CPU e ad accelerare il vostro wordpress basato siti.

Speed up PHP code execution. Accelerare l'esecuzione di codice PHP.
There are several php code accelerators available. Ci sono diversi codice php acceleratori disponibili. I Io recommend eAccelerator consigliamo di eAccelerator based on performance and stability. sulla base di prestazioni e stabilità. Use it with at least 128MB RAM ( eaccelerator.shm_size = “128″ ). Usarli con almeno 128 MB di RAM (eaccelerator.shm_size = "128"). You will observe significant performance benefit from this. Potrete osservare le prestazioni vantaggio significativo di questo. Note the average cpu utilization before and after. Nota la media l'utilizzo della CPU prima e dopo.

Optimize MySQL server installation Ottimizzare l'installazione server MySQL
MySQL on Linux get installed by default with minimal configuration which is suitable for low end machine. MySQL su Linux vengono installati per impostazione predefinita con configurazione minima, che è adatto per la macchina di fascia bassa. It doesn’t make use of the memory of your system you may have. Non fanno uso di memoria del vostro sistema potrebbe essere. There are several online guide to configure mysql for better memory utilization and overall optimum performance. Ci sono diversi guida online per configurare mysql per una migliore utilizzazione di memoria globale e prestazioni ottimali. I used the following settings: Ho usato le seguenti impostazioni:
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 Leggete i manuali spiegazioni su ognuna di queste impostazioni :)

You may also want to enable slow query log and identify the slow queries. Si potrebbe anche voler consentire query lente di log e di identificare il lento query. Progressively reduce the time as you better optimize the queries. Ridurre progressivamente il tempo come meglio ottimizzare le query.

Slim & trim WordPress. Slim & Trim WordPress.
WordPress is supported by tons of free and paid plugins. WordPress è supportata da tonnellate di libero e pagati i collegamenti. However many of them are not optimized. Tuttavia molti di loro non sono ottimizzate. The slow query log step above should help you to identify the slow queries. Il lento passo di log di query di cui sopra dovrebbe aiutare l'utente a individuare il lento query. Search the plugin source code to identify the plugins responsible. Il plugin di ricerca di codice sorgente per identificare i responsabili dei plugin. Work, politely, with the authors to resolve the issue. Lavoro, educatamente, con gli autori per risolvere il problema. If that doesn’t work, look for alternatives or disable the plugin. Se non funziona, cercare alternative o disattivare il plugin. Plugins should be used in moderation. Plugins deve essere usato con moderazione. Prefer plugins for functionality rather than cool / wow factor. Preferisco plug-in per la funzionalità piuttosto che figo / wow fattore. Many plugins imposes a significant cost in terms of resource and performance. Molti collegamenti impone un costo significativo in termini di risorse e prestazioni.

Staticize your pages. Staticize tue pagine.
wp-cache 2 is a WordPress plugin which will cache your page output in a file ( wp-cache 2 è un WordPress plugin che la tua pagina cache di output in un file ( download scaricare ). 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. Per le future richieste della stessa pagina, serve il contenuto direttamente dal file scavalcando così la necessità di una banca dati e queires ulteriormente l'esecuzione di codice php. It recognizes when any page content has changed. Riconosce quando qualsiasi contenuto della pagina è cambiato. Unfortunately it then invalidates the whole cache instead of the page itself and other pages which are likely to change. Purtroppo poi decadere l'intera cache anziché la pagina stessa e altre pagine che sono suscettibili di cambiamento.

It will also invalidate the whole cache it a comment is added to any post. Consente inoltre di invalidare l'intera cache è un commento, è aggiunto ad ogni post. This is a problem for highly commented blogs. Questo è un problema per molto commentato blog. I had posted a solution to this problem: Avevo postato una soluzione a questo problema: How To Improve Performance of Highly Commented WordPress Blogs Come migliorare le prestazioni di grandi commentato i blogs di WordPress .

At some point you still will have to move to a better server - from shared hosting to Ad un certo punto si dovrà passare a una migliore server - dal comune di hosting a VPS (virtual private server) VPS (virtual private server) and then from VPS to dedicated server(s). e poi da VPS a server dedicato (s). And then you may have to use a caching reverse proxy server for load balancing between multiple apache servers. E quindi potrebbe essere necessario utilizzare un caching proxy inverso per il bilanciamento del carico tra più server apache. Trust me you will want to face this type of challenges for now in you are in the big league Fiducia mi si vorranno affrontare questo tipo di sfide per ora è in corso la grande campionato :)