Skip to main content

Decorators to memoize function results (also for classes)

Project description

Description

memoize and keyed-memoize decorators.

  • memo: The classical memoize decorator. It keeps a cache args -> result so you don’t continue to perform the same computations.

  • keymemo(key): This decorator factory act as memo but it permits to specify a key function that takes the args of the decorated function and computes a key value to use as key in the cache dictionary. This way you can for example use a single value of a dictionary as key of the cache, or apply a function before passing something to the cache.

  • instancememo: The classical memoize decorator that can be applied to class functions. It keeps a cache args -> result so you don’t continue to perform the same computations. The cache is kept in the class namespace.

  • instancekeymemo(key): This decorator factory works like a combination of instancememo and keymemo, so it allows to specify a function that generate the cache key based on the function arguments and can be applied to class functions.

Usage

from memo import memo

@memo
def fibonacci(n):
    if n <= 2:
        return 1
    return fibonacci(n-1) + fibonacci(n-2)
from memo import keymemo

@keymemo(lambda tup: tup[0])
def function(tup):
    # build a cache based on the first value of a tuple
    ...

Installation

The package has been uploaded to PyPI, so you can install it with pip:

pip install python-memo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-memo-0.1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page