As the Store Locator Plus® SaaS platform continues to grow we are finding it more important than ever to fine tune our web server and PHP processes to better serve…Continue readingTuning PHP FPM on nginx
WordPress REST performance sucks. There, I said it. Not because I dislike WordPress — in fact I think it is the best open source web application we have seen…Continue readingWhy WordPress REST Performance Sucks
A recent discussion with a tech guru at Automattic posed a great question — how does JavaScript asynchronous processing work on a single-threaded app? Great question, but before I found…Continue readingOptimizing JavaScript for Chrome
I recently found that I needed to Profile WordPress Cron to figure out the best way to improve the processing time on background file imports. In an effort to better…Continue readingProfile WordPress Cron Jobs With VVV
I recently wrote an article on why you should bury the bulk of your plugin PHP code at least TWO levels deep from the top-level directory. The short version: WordPress…Continue readingWordPress Plugin Overhead
This is something I often come across in code. Just came across it in our MySLP project today , in fact. SELECT count(id) FROM my_table While the performance impact of…Continue readingPerformance Benefits Of COUNT(*) In SQL