Skip to content

Instantly share code, notes, and snippets.

@PeteGabriel
Created December 31, 2019 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PeteGabriel/1ffde55680b956d728edcf57c3b7ed79 to your computer and use it in GitHub Desktop.
Save PeteGabriel/1ffde55680b956d728edcf57c3b7ed79 to your computer and use it in GitHub Desktop.
public sealed class FileCache implements Cache {
private string directory;
public FileCache(string directory){
this.directory = directory;
}
public string get(string cacheKey){
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment