Skip to main content

Adds dogpile.cache support to your Flask application

Project description

Easy to Configure

# config.py

DOGPILE_CACHE_URLS = ("127.0.0.1:11211",)
DOGPILE_CACHE_REGIONS = (
    ('hour', 3600),
    ('day', 3600 * 24),
    ('month', 3600 * 24 * 31),
)

# Default settings:
# DOGPILE_CACHE_BACKEND = 'dogpile.cache.memcached'
# DOGPILE_CACHE_BINARY = True

Easy to Initialize

# app.py

import config
from flask import Flask
from flask.ext.dogpile_cache import DogpileCache


app = Flask(__name__)
app.config.from_object(config)

cache = DogpileCache()
cache.init_app(app)

# Alternative way: cache = DogpileCache(app)

Easy to Use

@cache.region('hour')
def cached_func(*args):
    print "First time print", args
    return args

value = cached_func()

# Invalidating
cache.invalidate(cached_func, *args)

# Refreshing
cache.refresh(cached_func, *args)

# Setting custom value
cache.set(cached_func, value, *args)

Easy to Install

$ pip install Flask-Dogpile-Cache

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

Flask-Dogpile-Cache-0.1.3.tar.gz (3.8 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