Posgres based caching system. Features:
- Doesn't recompute on refactoring: Since the keys are based on scope -> individual keys you can move the functions around without having cache misses
- Doesn't recompute on code changes: Something which drove me mad with joblib's memory: every time I added a print statement the cache would invalidate and fetch again. If your code changed enough, increase the versioning to make it recompute
- Refetch on demand: I had situation when I wanted to refetch particular method calls without deleting the whole cache. This is possible through the refetch attribute
- Human readable keys: In order to delete a certain sets of keys later I wanted the keys to be humanly readable in the database and not just hashes
Usage: