Starter Guide to optimize Buddypress or Buddyboss
Performance Optimizations
Top 15 Optimizations for Buddypress and Buddyboss to follow right away
Follow our comprehensive guide to start optimizing your BuddyPress community today. Packed with condensed, actionable insights and real-world case studies, our guide empowers you to tackle performance bottlenecks, streamline database queries, and implement effective caching strategies, all aimed at enhancing your site’s speed and reliability. If you want to learn even more, check our case studies for further insights or consult one of our experts which can try to identify your bottleneck depending on your server configuration right away.
Special Hint
The best performance improvements are generated from adjusting/removing hooks and code based on specific needs. This involves removing or deactivating internal PHP-Code and hooks that many communities may not use, allowing for a streamlined and efficient operation.
By tailoring the functionality to fit your requirements, we can enhance performance and ensure that your platform runs smoothly and effectively.
Make use of PHP built-in features: OPCache
Adjusting memory limits & database settings
Changing Database Storage Engine to InnoDB
Debloat Database
Optimize SQL-Tables from Time to Time
if(!wp_next_scheduled('CRONJOB_OptimizeDatabase')) {
wp_schedule_event(strtotime('00:15:00'), 'daily', 'CRONJOB_OptimizeDatabase');
}
add_action('CRONJOB_OptimizeDatabase', function ()
{
global $wpdb;
$tables = $wpdb->get_col("SHOW TABLES");
foreach($tables as $table) {
$wpdb->query("OPTIMIZE TABLE $table");
}});
Caching Techniques
Database / Page Caching
Object Caching
WordPress Transients
WordPress Transients are a powerful caching mechanism that allows developers to store calculated data (e.g. from expensive / load-intensive queries or calculations) with an expiration time. This can drastically reduce the number of database queries and improve site performance by storing the results of expensive operations, such as API calls or complex database queries, for a specified period. However, if object caching is not activated on the server, transients are stored in the wp_options
table, which means that database queries will still occur to retrieve these cached values. While this is still more efficient than recalculating the results on every page load, enabling a persistent object cache like described one section above further optimizes performance by storing transients in memory.
Frontend Loading-Time
All of these features can and will improve the responsiveness of pageload times on the client side by decreasing the filesizes, minimizing the number of files to be loaded and / or caching the files on the clients machines. Doing so will not only improve the loading times but also decrease the overall server load specifically on the webserver (mostly Apache or Nginx). Hence, indirectly benefitting the available ressources to spawn and run efficient PHP processes.
Lazyloading of Images
Browser Caching
Minify CSS / JS
Minifying CSS and JavaScript files is a crucial step by reducing file sizes and improving load times on client side. Minification involves removing all unnecessary characters from code — such as whitespace, comments, and line breaks — without affecting its functionality. This process results in smaller file sizes, which means faster downloads and quicker parsing by the browser, leading to improved page responsiveness. Tools and plugins like W3 TotalCache or Fastest Cache can automate this process, ensuring that the minified files are optimized for production environments. Furthermore, combining minification with other strategies, such as file concatenation can further improve resource delivery to the users browser. This can be activated in W3 TotalCache with minimal effort.
Use a CDN-provider like Cloudflare
Using a Content Delivery Network (CDN) to offload static files is a strategy for optimizing webserver performance and scalability. A CDN is a network of geographically distributed servers designed to deliver content to users more efficiently. The CDN usually retrieves static ressources from the origin webserver every now and than, then stores and serves the static files such as images, CSS, JavaScript, and other media files through the server network. This reduces load on your webserver, but also improves loading times for users across the globe, because the CDN picks the best server-location to server the files depending on the user location. Additionally, CDNs often provide built-in security features, such as DDoS protection and secure token access, further enhancing the website’s reliability and security. This does only require small changes to your domain DNS settings – but is free and easy to setup.
Deactivate not-needed Plugins
Decrease huge amount of AJAX calls (a.k.a. Heartbeat)
define('HEARTBEAT_SECS', 45);
add_filter('heartbeat_settings', function ($settings)
{
$settings['interval'] = HEARTBEAT_SECS; //Anything between 15-60
$settings['minimalInterval '] = HEARTBEAT_SECS; //Anything between 15-60
return $settings;
});
Analyze and optimize Autoload Options
SELECT
'autoloaded data in KiB' as name,
ROUND(SUM(LENGTH(option_value))/ 1024) as value
FROM wp_options WHERE autoload='yes'
UNION
SELECT 'autoloaded data count', count(*)
FROM wp_options WHERE autoload='yes'
Change WordPress-Cronjobs to run on demand only
Turnoff not needed “slow” features
There are a lot of features in Buddypress and Buddyboss which are quite runtime intensive but rarely used or of not much use. For example:
Buddypress Username mentions (parsing of @username)
add_filter("bp_activity_do_mentions", "__return_false");
PMPro Tracking of Views & Visits
remove_action("wp", "pmpro_report_login_wp_visits");
remove_action("wp_head", "pmpro_report_login_wp_views");
remove_action("wp_login", "pmpro_report_login_wp_login", 10 ,2);
Deleting orphaned transients
Simple solution: Install Delete Expired Transients and make sure to run it regularly to make your database or persistent object cache less of a mess. Unfortunately this plugin does not come with a scheduled cronjob, which means: You have to run it manually yourself. And who likes manual stuff which you have to remember on a daily or weekly basis? Solution: Build a small cronjob which is scheduled as WordPress Cronjob and runs nightly. Simply take our code to take care of it:
if(!wp_next_scheduled('CRONJOB_CleanOrphanedTransients')) {
wp_schedule_event(strtotime('00:15:00'), 'daily', 'CRONJOB_CleanOrphanedTransients');
}
add_action('CRONJOB_CleanOrphanedTransients', function ()
{
$blog_id = get_current_blog_id();
if(class_exists('DelxtransCleaners'))
DelxtransCleaners::clearBlogExpired($blog_id);
});
Analyze using Query Monitor
Analyzing your database load using, for example, the Query Monitor plugin in WordPress is a powerful way to understand the database query load and, as a result, optimize the performance and efficiency of your WordPress site. This is particularly sensible for BuddyPress, as there is much to understand and analyze. While using Query Monitor to examine your SQL queries, you should particularly focus on recurring queries, the total number of queries, and slow queries.
By identifying the number of SQL queries, and especially the number of recurring SQL queries, you can often find cascades of WP-Hooks running in a specific call chain that are not needed and should be resolved or removed. Sometimes such an optimization can save hundreds of queries for every single page load. We’ve seen plenty of such instances, sometimes resulting in a 100% performance increase of a single page load.
Make sure to check out our case studies to learn more about it.
Analyze recurring SQL Queries
Check total number of SQL Queries
Number and runtime of Slow SQL Queries
- Optimizing the “Who is Online” Widget in BuddyPress: A Real-World SolutionOne of its useful tools of Buddypress and Buddyboss for overall UX is the “Who is Online” widget, which displays a list of users who have been active in the last few minutes. On the surface, this feature seems simple, but as your community grows, it can introduce significant performance challenges. Read here how you… Read more: Optimizing the “Who is Online” Widget in BuddyPress: A Real-World Solution