Highly inefficient for Large Websites
-
Hi,
UM creates following cache entries in wp_options table for each user: um_cache_userdata_*.
These queries have autoload field set to true.
Wordpress has a native query, which is loaded in almost every page of the site:
`SELECT option_name, option_value
FROM wp_options
WHERE autoload = ‘yes’`Now the cached data of each user is loaded everytime a page is loaded. Because of this issue, above query takes 200-250ms in every page load. I am using 32GB RAM Instance in AWS.
I have a high traffic website so I have to clean the user cache every day and still in just 10-12 hours it starts executing in old time. I am not sure how much I can scale with this issue.
The topic ‘Highly inefficient for Large Websites’ is closed to new replies.