Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache: Coherence #13137

Merged
merged 1 commit into from Jul 7, 2021
Merged

Cache: Coherence #13137

merged 1 commit into from Jul 7, 2021

Commits on Jul 6, 2021

  1. Cache: Cache coherence

    The cache would fail to notify if you changed from a value and back to
    the original value. This is because the underlying hash value was never
    written. This has two consequences:
    
     1. The cache could never emit a change of the original value
     2. Because we never cached the new value, if the new value was the same
     as the old one, we would still emit the event.
    
    The fix is easy, just save the hash after the notify and we can have
    better cache coherency.
    SimonRichardson committed Jul 6, 2021
    Configuration menu
    Copy the full SHA
    c725de1 View commit details
    Browse the repository at this point in the history