[PM-40516] Fix Extended Cache Service Registration - #8007
Merged
Conversation
…8004) The shared-Redis path registered a single unnamed IFusionCacheBackplane singleton and bound every named cache to it via WithRegisteredBackplane(). A RedisBackplane instance is bound to one pub/sub channel at Subscribe time, so sharing one instance across caches collapses them onto a single channel. Cross-instance invalidations were misrouted, leaving stale L1 entries on other nodes (e.g. an OrganizationAbilities RemoveAsync publishing on the OrganizationReports channel). Register the backplane as a keyed singleton per cache name and resolve it with WithRegisteredKeyedBackplaneByCacheName(), matching the keyed-Redis path. The multiplexer and distributed cache remain shared. (cherry picked from commit a93cf75)
Contributor
|
Claude Code is reviewing this pull request... If this comment does not update with results, check the Actions log. |
JaredScar
approved these changes
Jul 17, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## rc #8007 +/- ##
=======================================
Coverage 61.56% 61.57%
=======================================
Files 2256 2256
Lines 99391 99393 +2
Branches 8984 8984
=======================================
+ Hits 61194 61197 +3
+ Misses 36045 36044 -1
Partials 2152 2152 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🍒⛏️ PM-40516