Skip to content

Instantly share code, notes, and snippets.

@varunu28
Created December 4, 2021 22:29
Show Gist options
  • Select an option

  • Save varunu28/6752df00079b280fadf90b219b37ac6c to your computer and use it in GitHub Desktop.

Select an option

Save varunu28/6752df00079b280fadf90b219b37ac6c to your computer and use it in GitHub Desktop.
if (cache.containsKey(key)):
return cache.get(key)
else:
value = fetchFromDb(key)
cache.put(key, value)
return value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment