Reputation: 506
I want to know how to run wordpress site without mysql because mysql causing high cpu load. If any one have solution then please share it. Share any alternative solution. Thanks
Upvotes: 1
Views: 2948
Reputation: 2972
You might(!) be able to replace MySQL with another database with a lot(!) of effort, but MySQL shouldn't have any trouble handling a simple WordPress site.
If you have plugins or theme-code that does a lot of database queries, your time will be better spent optimizing on that side of the equation.
Also, add caching to take load off the system in general.
Upvotes: 1
Reputation: 67778
You can't. Wordpress is completely based on all page and post data as well as all kinds of settings being stored in and fetched from a database.
Upvotes: 1