Skip to main content

A 'dogpile' lock, typically used as a component of a larger caching solution

Project description

A “dogpile” lock, one which allows a single thread to generate an expensive resource while other threads use the “old” value, until the “new” value is ready.

Dogpile is basically the locking code extracted from the Beaker package, for simple and generic usage.

Usage

A simple example:

from dogpile.core import Dogpile

# store a reference to a "resource", some
# object that is expensive to create.
the_resource = [None]

def some_creation_function():
    # create the resource here
    the_resource[0] = create_some_resource()

def use_the_resource():
    # some function that uses
    # the resource.  Won't reach
    # here until some_creation_function()
    # has completed at least once.
    the_resource[0].do_something()

# create Dogpile with 3600 second
# expiry time
dogpile = Dogpile(3600)

with dogpile.acquire(some_creation_function):
    use_the_resource()

Above, some_creation_function() will be called when Dogpile.acquire() is first called. The remainder of the with block then proceeds. Concurrent threads which call Dogpile.acquire() during this initial period will be blocked until some_creation_function() completes.

Once the creation function has completed successfully the first time, new calls to Dogpile.acquire() will call some_creation_function() each time the “expiretime” has been reached, allowing only a single thread to call the function. Concurrent threads which call Dogpile.acquire() during this period will fall through, and not be blocked. It is expected that the “stale” version of the resource remain available at this time while the new one is generated.

dogpile.core is at the core of the dogpile.cache package which provides for a basic cache API and sample backends based on the dogpile concept.

Development Status

Please note dogpile.core is new and has only had minimal production usage ! Comments and improvements are welcome. Since this is concurrency-oriented code, please review the source and let me know about potential issues. As always, use at your own risk!

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

dogpile.core-0.3.1.tar.gz (102.0 kB view details)

Uploaded Source

File details

Details for the file dogpile.core-0.3.1.tar.gz.

File metadata

File hashes

Hashes for dogpile.core-0.3.1.tar.gz
Algorithm Hash digest
SHA256 93e4ce15a42f54c0715a1df2b635da4f8d1769df281afe7ae13090fae22a9087
MD5 60d306d26063a7b6b1e5955b84edcb8a
BLAKE2b-256 6608d515337385f0f3c0a68f009872dd39ced7bc025f7f3d96151d89dcc5fefa

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