Memoiz is a memoization decorator that makes reasonable assumptions about how and if to cache the return value of a function or method based on the arguments passed to it. The decorator can be used on both free and bound functions.
Project description
Memoiz
A thread-safe memoization decorator for functions and methods.
Introduction
Memoiz is a memoization decorator that makes reasonable assumptions about how and if to cache the return value of a function or method based on the arguments passed to it. The decorator can be used on both free and bound functions.
Features
- A thread-safe cache
- Use the Memoiz decorator on free and bound functions
- Support for parameter and return type hints
- Cache invalidation
Table of Contents
Installation
pip install memoiz
Usage
Bound Functions (methods)
In this example you will use Memoiz to memoize the return value of the greeter.greet
method and print the greeting.
from memoiz import Cache
cache = Cache()
class Greeter:
def __init__(self):
self.adv = "Very"
@cache #User the `cache` decorator in order to add memoization to the `greet` method.
def greet(self, adj: str) -> str:
return f"Hello, {self.adv} {adj} World!"
greeter = Greeter()
print("1:", cache._cache)
greeting = greeter.greet("Happy")
print("2:", greeting)
1: {}
2: Hello, Very Happy World!
As a continuation of the example, you will selectively invalidate cached articles using the cache.invalidate
method.
greeter = Greeter()
print("1:", cache._cache)
greeting = greeter.greet("Happy")
print("2:", greeting)
greeting = greeter.greet("Cautious")
print("3:", greeting)
# The cache has memoized the method call using the "Happy" argument and the
# method call using the "Cautious" argument.
print("4:", cache._cache)
# Invalidate the call to `greeter.greet` with the "Happy" argument.
# ⮶ instance
cache.invalidate(greeter.greet, greeter, "Happy")
# ⮴ method ⮴ args
print("5:", cache._cache)
# Invalidate the call to `greeter.greet` with the `Cautious` argument.
cache.invalidate(greeter.greet, greeter, "Cautious")
# The cache is empty.
print("6:", cache._cache)
1: {}
2: Hello, Very Happy World!
3: Hello, Very Cautious World!
4: {<bound method Greeter.greet of <__main__.Greeter object at 0x7fa5e7f837f0>>: {((<__main__.Greeter object at 0x7fa5e7f837f0>, 'Happy'), ()): 'Hello, Very Happy World!', ((<__main__.Greeter object at 0x7fa5e7f837f0>, 'Cautious'), ()): 'Hello, Very Cautious World!'}}
5: {<bound method Greeter.greet of <__main__.Greeter object at 0x7fa5e7f837f0>>: {((<__main__.Greeter object at 0x7fa5e7f837f0>, 'Cautious'), ()): 'Hello, Very Cautious World!'}}
6: {}
Free Functions
In this example you will use Memoiz to memoize the return value of the greet
function and print the greeting.
from memoiz import Cache
cache = Cache()
@cache
def greet(adj: str) -> str:
return f"Hello, {adj} World!"
print("1:", cache._cache)
greeting = greet("Happy")
print("2:", greeting)
1: {}
2: Hello, Happy World!
As a continuation of the example, you will selectively invalidate cached articles using the cache.invalidate
method.
print("1:", cache._cache)
greeting = greet("Happy")
print("2:", greeting)
greeting = greet("Cautious")
print("3:", greeting)
print("4:", cache._cache)
# ⮶ args
cache.invalidate(greet, "Happy")
# ⮴ function
# The call using the "Happy" argument is deleted; however, the call using the
# "Cautious" is still present.
print("5:", cache._cache)
# ⮶ args
cache.invalidate(greet, "Cautious")
# ⮴ function
# The cache is now empty.
print("6:", cache._cache)
1: {}
2: Hello, Happy World!
3: Hello, Cautious World!
4: {<function greet at 0x7fa5cefb8430>: {(('Happy',), ()): 'Hello, Happy World!', (('Cautious',), ()): 'Hello, Cautious World!'}}
5: {<function greet at 0x7fa5cefb8430>: {(('Cautious',), ()): 'Hello, Cautious World!'}}
6: {}
Limitations
Memoization relies on the behavior of pure functions; given the same input the function will produce the same output. It isn't safe to assume that a callable is pure in Python; hence, you must use discretion.
Memoiz uses a Python dictionary in order to cache callable inputs and outputs. Memoiz will attempt to transform a callable's arguments into a hashable representation. If it succeeds, the hashable representation of the callable's arguments is used as the dictionary key in order to store and look up the cached output. If it fails, Memoiz will call the decorated function or method and return the result.
Memoiz employs a few strategies to produce a hashable lookup key. Memoiz will recursively iterate through dict
, list
, set
, and tuple
type arguments, transforming these mutable objects into hashable representations. See the Type Transformation table for type transformations. When a primitive is encountered (e.g., int
, float
, complex
, bool
, str
, None
), it is left as is. If allow_hash
is set to True
(the default), Memoiz will additionally attempt to discern if an object is hashable using Python's hash
function.
Effectively what this all means is that if you are using common Python iterables and primitives as arguments to your callable, and if your callable doesn't have side effects, Memoiz should be able to accurately cache your input arguments and output for subsequent function calls.
Type Transformation
Type | Hashable Type |
---|---|
dict | tuple of tuples |
list | tuple |
tuple | tuple |
set | tuple |
API
The Cache Class
memoiz.Cache(immutables, allow_hash, deep_copy)
- immutables
Tuple[type, ...]
An optional list of objects that are assumed to be immutable. Default:(int, float, complex, bool, str, type(None))
- allow_hash
bool
An optional flag that indicates if an object's hash is sufficient for indexing the callable's arguments. Default:True
- deep_copy
bool
Optionally return the cached return value using Python'scopy.deepcopy
. This can help prevent mutations of the cached return value. Default:True
.
cache.__call__(callable)
- callable
typing.Callable
The function or method for which you want to add memoization.
A Cache
instance (see above) is a callable. This is the @cache
decorator that is used in order to add memoization to a callable. Please see the above usage for how to use this decorator.
cache.invalidate(callable, *args, **kwargs)
- callable
typing.Callable
The callable. - args
Any
The arguments passed to the callable. - kwargs
Any
The keyword arguments passed to the callable.
Invalidates the cache for the specified callable and arguments. See the usage for for how to invalidate the cache.
NB The first argument of a method (i.e., a bound function) is the object instance e.g., the
self
in the method definition.
cache.invalidate_all()
Resets the cache making the old cache eligible for garbage collection.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file memoiz-1.1.2.tar.gz
.
File metadata
- Download URL: memoiz-1.1.2.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9542e4933f60c724476c9112eba4138d3a337e3527f710ff6c404e01f4e8bb16 |
|
MD5 | fa695fb37832926d2d20ec673c1e7296 |
|
BLAKE2b-256 | 69b57c7f51e9b41d801eea1013ba13213b58e0faece766d4bf669b903304753c |
File details
Details for the file memoiz-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: memoiz-1.1.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c1f741b3dd99581243cffbc8759e582611bedf780eee4a5663b63b3b3e687c4 |
|
MD5 | 6f01247d0c4f1c45f497756b21c2cf61 |
|
BLAKE2b-256 | 5ace7eb519cb27668f35afbf2ffe0d61f6ba5fe61fd383bac7e9eb99c2fe43cd |