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

useResponseCache: invalidate cache all at once #2131

Open
martin-cycle opened this issue Jan 5, 2024 · 0 comments
Open

useResponseCache: invalidate cache all at once #2131

martin-cycle opened this issue Jan 5, 2024 · 0 comments
Labels
kind/enhancement New feature or request

Comments

@martin-cycle
Copy link

Is your feature request related to a problem? Please describe.

If you don't setup a ttl at first, you may endup with a never invalidated cache even after adding new cache restriction in the config.

Describe the solution you'd like

Some very basic solution using the inMemoryCache but we should be generalised (proposed by @EmrysMyrddin):

import { createInMemoryCache, Cache } from '@graphql-yoga/plugin-response-cache'

export function createCache(): Cache {
  let cache  = createInMemoryCache()
  return {
    get: (...args) => cache.get(...args),
    set: (...args) => cache.set(...args),
    invalidate: (...args) => cache.invalidate(...args),
    purge: () => {
      cache = createInMemoryCache()
    },
  }
}

Describe alternatives you've considered

A custom implementation

Additional context

/

@EmrysMyrddin EmrysMyrddin added the kind/enhancement New feature or request label Feb 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants