Skip to main content

A Python library for real-time PostgreSQL event-driven cache invalidation.

Project description

PGCacheWatch

CI pypi downloads versions

PGCacheWatch is a Python library crafted to empower applications with real-time PostgreSQL event notifications for efficient cache invalidation, directly leveraging existing PostgreSQL infrastructure. This approach eliminates the need for additional technologies for cache management, simplifying your stack while enhancing performance and real-time data consistency.

Key Advantages

  • Leverage Existing Infrastructure: Utilizes PostgreSQL's native NOTIFY/LISTEN capabilities for event-driven cache invalidation, avoiding the overhead of integrating external caching systems.
  • Asynchronous and Efficient: Built on top of asyncpg for asynchronous database communication, ensuring non-blocking I/O operations and optimal performance.
  • Flexible Cache Invalidation Strategies: Offers a variety of strategies (e.g., Greedy, Windowed, Timed) for nuanced cache invalidation control, tailored to different application needs.
  • Simple Yet Powerful API: Designed with simplicity in mind, offering a straightforward setup process and an intuitive API for managing cache invalidation logic.

Installation

To install PGCacheWatch, run the following command in your terminal:

pip install pgcachewatch

Using PGCacheWatch

Setting Up

Initialize PostgreSQL triggers to emit NOTIFY events on data changes. PGCacheWatch provides utility scripts for easy trigger setup

pgcachewatch install <tables-to-cache>

FastAPI Example

Example showing how to use PGCacheWatch for cache invalidation in a FastAPI app

import contextlib
import typing

import asyncpg
from fastapi import FastAPI
from pgcachewatch import decorators, listeners, models, strategies

listener = listeners.PGEventQueue()


@contextlib.asynccontextmanager
async def app_setup_teardown(_: FastAPI) -> typing.AsyncGenerator[None, None]:
    conn = await asyncpg.connect()
    await listener.connect(conn, models.PGChannel("ch_pgcachewatch_table_change"))
    yield
    await conn.close()


APP = FastAPI(lifespan=app_setup_teardown)


# Only allow for cache refresh after an update
@decorators.cache(
    strategy=strategies.Gready(
        listener=listener,
        predicate=lambda x: x.operation == "update",
    )
)
async def cached_query() -> dict[str, str]:
    # Simulate a database query
    return {"data": "query result"}


@APP.get("/data")
async def get_data() -> dict:
    return await cached_query()

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

PGCacheWatch-0.2.1.tar.gz (18.5 kB view hashes)

Uploaded Source

Built Distribution

PGCacheWatch-0.2.1-py3-none-any.whl (14.6 kB view hashes)

Uploaded Python 3

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