- 🇱🇧Lebanon samirjamal
Hello, we have the same problem. Upon editing a node after first saving, the data changed in the database but is not reflected in the form because it is still cached. When we clear the cache, the data changes and appears in the cms.
Can anyone help on this?
I am using Drupal 9 and the latest version of Memcache Module 8.x-2.5. - 🇸🇪Sweden twod Sweden
@samirjamal We've had that issue for years too. Last time we investigated it came down to needing transactional support to avoid a race condition specifically with entity cache: 🐛 Transaction support for cache (tags) invalidation Needs review .
Until then we're using this in our settings file
$settings['cache']['bins']['entity'] = 'cache.backend.database';
to move that bin back to the databse. @twod - we were having the same issue and initially the patch for transaction support resolved the issues.
However it stopped working after update to D10.3 and Memcache 8.x-2.6 and we now periodically get stuck with old revisions after node edit/publish that persist until the cache is cleared... Does anyone have any suggestions here?