You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we only have one cache tag (I think that's the usual case, at least for Magento), we can just remove this instead of removing the set members, right?
The text was updated successfully, but these errors were encountered:
The _notMatchingTags flag is disabled by default so this code would not have any effect unless it is enabled by the user. When enabled it keeps track of all ids in a separate set so that it is efficient to do a "not matching tags" cache clear. Otherwise it would be very time consuming to get all ids. This is a lot of overhead though which is why it's disabled by default.
I've seen plenty of cases where there are multiple tags used so I don't think any such assumptions can be made safely, at least not for a general-purpose library.
Cm_Cache_Backend_Redis/Cm/Cache/Backend/Redis.php
Line 748 in 1132d90
If we only have one cache tag (I think that's the usual case, at least for Magento), we can just remove this instead of removing the set members, right?
The text was updated successfully, but these errors were encountered: