Use WP Rocket with load balancing
WP Rocket is not designed to work with load balancing setups by default. Customization is required to make it work, but we cannot provide further support or troubleshooting beyond what's presented in this article.
- A
-
You can configure your set up to share the cache between your servers, by specifying a custom cache folder and a custom config location:
https://docs.wp-rocket.me/article/1118-specify-a-custom-cache-folder - B
-
If that is not possible, WP Rocket has a lot of hooks and functions your developers can use to implement customized actions.
For example, there is the function rocket_clean_post() that will clear a post and all the content associated from the cache. So you could write a custom function to hook into
update_post
and performrocket_clean_post
on all your servers.