Update.
The issue has been discovered and a temporary solution found. However, I do need you to pick up this request as I need to find a permanent solution.
Some context, when updating values in Veeqo the values aren’t showing in the respective Woocommerce front end. The reason is related to Object Caching. When Object Caching is active each time any updates are processed there’s no function to clear the object caching, so until called upon only the cache values are shown.
Talking to Veeqo and our Dev a long-term solution could be to run the following:
$WP_Object_Cache = new WP_Object_Cache();
$WP_Object_Cache->flush();
This would mean a hook would be needed in the plugin to trigger a flush of the cache each time the database is updated directly.
My temporry solution is to switch off object caching enabling the database to be read directly everytime. Just concerned this would be resource intensive.
Please can you pick up on this to see what can be done?
Many Thanks,
Tom