Skip to main content

Caching results of operations on heavy file trees

Project description

CI Status https://codecov.io/gh/con/fscacher/branch/master/graph/badge.svg https://img.shields.io/pypi/pyversions/fscacher.svg MIT License

GitHub | PyPI | Issues | Changelog

fscacher provides a cache & decorator for memoizing functions whose outputs depend upon the contents of a file argument.

If you have a function foo() that takes a file path as its first argument, and if the behavior of foo() is pure in the contents of the path and the values of its other arguments, fscacher can help cache that function, like so:

from fscacher import PersistentCache

cache = PersistentCache("insert_name_for_cache_here")

@cache.memoize_path
def foo(path, ...):
    ...

Now the outputs of foo() will be cached for each set of input arguments and for a “fingerprint” (timestamps & size) of each path. If foo() is called twice with the same set of arguments, the result from the first call will be reused for the second, unless the file pointed to by path changes, in which case the function will be run again. If foo() is called with a non-path-like object as the value of path, the cache is ignored.

memoize_path() optionally takes an exclude_kwargs argument, which must be a sequence of names of arguments of the decorated function that will be ignored for caching purposes.

Caches are stored on-disk and thus persist between Python runs. To clear a given PersistentCache and erase its data store, call the clear() method.

By default, caches are stored in the user-wide cache directory, under an fscacher-specific folder, with each one identified by the name passed to the constructor (which defaults to “cache” if not specified). To specify a different location, use the path argument to the constructor instead of passing a name:

cache = PersistentCache(path="/my/custom/location")

If your code runs in an environment where different sets of libraries or the like could be used in different runs, and these make a difference to the output of your function, you can make the caching take them into account by passing a list of library version strings or other identifiers for the current run as the token argument to the PersistentCache constructor.

Finally, PersistentCache’s constructor also optionally takes an envvar argument giving the name of an environment variable. If that environment variable is set to “clear” when the cache is constructed, the cache’s clear() method will be called at the end of initialization. If the environment variable is set to “ignore” instead, then caching will be disabled, and the cache’s memoize_path method will be a no-op. If the given environment variable is not set, or if envvar is not specified, then PersistentCache will query the FSCACHER_CACHE environment variable instead.

Installation

fscacher requires Python 3.7 or higher. Just use pip for Python 3 (You have pip, right?) to install it and its dependencies:

python3 -m pip install fscacher

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

fscacher-0.4.2.tar.gz (35.0 kB view details)

Uploaded Source

Built Distribution

fscacher-0.4.2-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file fscacher-0.4.2.tar.gz.

File metadata

  • Download URL: fscacher-0.4.2.tar.gz
  • Upload date:
  • Size: 35.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fscacher-0.4.2.tar.gz
Algorithm Hash digest
SHA256 cc6bcfa9db719086213837a1545cbb5d678b1e317731757513b53589199c3c1f
MD5 9d45c769fdca6191405d4e856edb7bb2
BLAKE2b-256 c16c2b369d5cb2b53472fc629d07912b6894e195887a68c0fff7ea62b36d2a86

See more details on using hashes here.

File details

Details for the file fscacher-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: fscacher-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fscacher-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a053867b167c7fa55784a0c660cf050c490057a47b0fe3a02150c8b372765c08
MD5 04fc2205560c2c0ae3b82af4c43c94f4
BLAKE2b-256 a1a793add938df5e24059a2412550bb4b83d87ca58b78639b94b4223f4ee0a93

See more details on using hashes here.

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