Skip to main content

FastAPI Simple Cache

Project description

FastAPI Simple Cache

Tests Coverage Package version Supported Python versions

FastAPI Simple Cache will cache responses from a decorated endpoint if the response is JSON encodable or a FastAPI Response.

Quick start

from fastapi import FastAPI, Request

app = FastAPI()

# Initialize in startup event
from fastapi_simple_cache import FastAPISimpleCache
from fastapi_simple_cache.backends.inmemory import InMemoryBackend
@app.on_event("startup")
async def startup():
    backend = InMemoryBackend()
    FastAPISimpleCache.init(backend=backend)
    pass

# Use the @cache decorator
from fastapi_simple_cache.decorator import cache
@app.get("/")
@cache(expire=3600)  # Set expiration in seconds
def root(request: Request):  # Add a Request typed parameter
    return {"datetime": datetime.utcnow()}

Installation

The installation depends on the backend.

  • In memory: pip install fastapi-simple-cache
  • Redis: pip install "fastapi-simple-cache[redis]"
  • Firestore: pip install "fastapi-simple-cache[firestore]"

Backends

In memory

The InMemoryBackend class implements an in-memory backend.

from fastapi_simple_cache.backends.inmemory import InMemoryBackend

@app.on_event("startup")
async def startup():
    backend = InMemoryBackend()
    FastAPISimpleCache.init(backend=backend)

Redis

The RedisBackend class implements a Redis backend.

from redis.asyncio import ConnectionPool, client
from fastapi_simple_cache.backends.redis import RedisBackend


@app.on_event("startup")
async def startup():
    pool = ConnectionPool.from_url(url="redis://localhost:6379")
    backend = RedisBackend(redis=client.Redis(connection_pool=pool))
    FastAPISimpleCache.init(backend=backend)

Firestore

The FirestoreBackend class implements a Google Firestore backend.

import firebase_admin
from firebase_admin import firestore, credentials
from fastapi_simple_cache.backends.firestore import FirestoreBackend

@app.on_event("startup")
async def startup():
    cred = credentials.ApplicationDefault()
    firebase_admin.initialize_app(cred, {"projectId": "gcp_project"})
    db = firestore.client()
    collection = db.collection("cache_collection")
    backend = FirestoreBackend(collection=collection)
    FastAPISimpleCache.init(backend=backend)

Features

Namespaces

You can add the parameter namespace on cache initialization with FastAPISimpleCache.init to modify the storage keys. Use this feature if you need to share same cache environment with other applications but with different keys.

@app.on_event("startup")
async def startup():
    FastAPISimpleCache.init(
        backend=backend,
        namespace="my-app"
    )
    pass

Multi backends

Use more than one backend to cache responses with the backend parameter on cache initialization with FastAPISimpleCache.init. This feature is useful if you want to check an in-memory cache before an external cache.

from fastapi_simple_cache.backends.inmemory import InMemoryBackend
from fastapi_simple_cache.backends.redis import RedisBackend

inmem_backend = InMemoryBackend()
redis_backend = RedisBackend(...)

@app.on_event("startup")
async def startup():
    FastAPISimpleCache.init(
        backend=[inmem_backend, redis_backend]
    )
    pass

Valid status codes

Set valid status codes to cache responses in the @cache parameter status_codes (defaults to [200]).

@app.get("/")
@cache(expire=3600, status_codes=[200, 201])
def root(request: Request):
    return {"datetime": datetime.utcnow()}

License

FastAPI Fire Cache is released under the GNU General Public License v3.0 or later, see here for a description of this license, or see the LICENSE file for the full text.

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

fastapi-simple-cache-0.1.1.tar.gz (22.7 kB view details)

Uploaded Source

Built Distribution

fastapi_simple_cache-0.1.1-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file fastapi-simple-cache-0.1.1.tar.gz.

File metadata

  • Download URL: fastapi-simple-cache-0.1.1.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.1

File hashes

Hashes for fastapi-simple-cache-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c89709300ca60d6b80b6634517c265010da56abf624a2123c7de5763e7d4ff17
MD5 dd47d759d9d76a3bb24d73a40ecc88ca
BLAKE2b-256 436847575f3bce684a7d903b9f6d9a4c3830bc8b190331e4e7e0ef0a2e5eea4c

See more details on using hashes here.

File details

Details for the file fastapi_simple_cache-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_simple_cache-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9f18a59066dc4d0eda8a119346e3e758ace8547a0a78698be21f8f250fb7488b
MD5 0e989d053ea7f8b95d4004fbf04ae0b7
BLAKE2b-256 c5aee0f24483a9c5a41511b2b0ad15d18eb168d101c8a803bf1ee27f64871414

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