Skip to main content

Dynamic input-output caching for deterministic functions

Project description

Dynamic input-output caching for deterministic functions

PyPI Read the Docs License

Features

  • Keep It Simple, Stupid: A single decorator that does everything for you

  • Automagically detects if the decorated function is changed and transparently updates cache accordingly without ever returning cached results of the old function.

Installation

pip3 install dyncache

Examples

# Import the class
from dyncache import Cache
# Alternatively you may use the lowercased name
from dyncache import cache


# Use with default options. It will create a file "circle_area.dyncache" into
# the current directory.
@Cache()
def circle_area(radius):
    return 3.14159 * (radius ** 2)


# Empty parentheses are not required for the decorator.
@Cache
def circle_area(radius):
    return 3.14159 * (radius ** 2)


circle_area(2)  # Calculates and returns
circle_area(3)  # Calculates and returns
circle_area(2)  # Returns from cache


# Saves the cache to /tmp/hello.world.
@Cache(root="/tmp", filename="hello.world")
def circle_area(radius):
    ...


# Use for function with large input/output -values.
@Cache(largeitems=True)
def load_all_api_data_for_a_day(day):
    ...


# When items are small and cache would update too often, setting autowrite to
# False lets you control when the cached data is written to the file.
cache = Cache(autowrite=False)
@cache
def really_frequent_function(a, b):
    ...
...
cache.write()  # Write cache data to the file
sys.exit(0)

Contributing

  • Send any issues to GitHub’s issue tracker.

  • Before sending a pull request, format it with Black (-Sl79)

  • Any changes must be updated to the documentation

  • All pull requests must be tested with tox (if you are using pyenv, add the installed versions for py35-py38 and pypy3 to .python-version at the root of this repository before running tox)

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

dyncache-0.1.2.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dyncache-0.1.2-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file dyncache-0.1.2.tar.gz.

File metadata

  • Download URL: dyncache-0.1.2.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.1 Linux/6.12.6-zen1-1-zen

File hashes

Hashes for dyncache-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6ff39bc33488787001667c91fc7556dc035c7891a219fa2b1623d1a92897c422
MD5 fd2a1c9a9dc73267d879427fd7745f97
BLAKE2b-256 630647f072d2d098ce7ae4e0fc241d2cafc65e49168d6396e4c26c79c2194ed1

See more details on using hashes here.

File details

Details for the file dyncache-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: dyncache-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.1 Linux/6.12.6-zen1-1-zen

File hashes

Hashes for dyncache-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b1fac4eac0457a7b48c8685efcc204a9244e3ae216a0e2438689d421248bc742
MD5 96f0723b4e34532aa8fc4cdba9be351c
BLAKE2b-256 ad659fbeed5e0e4b58c877e9069c5fec18a03939c3bf39f20657d5e833a9bb57

See more details on using hashes here.

Supported by

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