Skip to main content

A specialized library developed by Credenti for efficient Redis caching in Flask applications.

Project description

Ct Redis Cache Lib

A specialized library developed by Credenti for efficient Redis caching in Flask applications.


Features

  • Decorator-based caching for Flask endpoints and functions
  • Configurable Redis connection pooling
  • Supports cache key templating with nested attribute access
  • Easy integration with Flask app lifecycle

Installation

pip install ct-redis-cache-lib

Configuration

Add the following to your Flask app configuration:

app.config['REDIS_CACHE'] = True              # Enable or disable Redis caching
app.config['REDIS_CACHE_EXPIRE_TIME'] = 60    # Default cache expiration time in seconds
app.config['CACHE_REDIS_HOST'] = 'localhost'  # Redis host
app.config['CACHE_REDIS_PORT'] = 6379         # Redis port
app.config['CACHE_CLIENT_NAME'] = 'my-client' # Redis client name

Usage

from flask import Flask
from ct_redis_cache_lib import init_cache
import logging

app = Flask(__name__)
logger = logging.getLogger(__name__)

# Initialize the Redis cache
ct_redis = init_cache(app, logger)

@app.route('/idle_time')
@ct_redis.cache(template_cache_key='idle_time_value:$idle_time', field='$idle_time')
def get_idle_time_value(idle_time: str):
    # Your function logic here
    return {'idle_time': idle_time}

Updating a Cache Entry

Update a cache entry directly:

ct_redis.update(
    cache_key='idle_time_value:123',  # Actual cache key
    field='some_field',
    value={'idle_time': 123},
    is_global=False,                  # or True if the key is global
    expire_time=120                   # optional, in seconds
)

Deleting a Cache Entry

Delete a cache entry:

ct_redis.delete(
    cache_key='idle_time_value:123',  # Actual cache key, not a template
    field='some_field',
    is_global=False                   # or True if the key is global
)

Committing and Resetting Cache

Commit cache writes after each request:

@app.after_request
def after_request(response):
    ct_redis.commit(response)
    return response

Reset cache if you need to roll back changes:

ct_redis.reset()

Cache Key Specification Examples

You can use dynamic cache keys by referencing function arguments or nested data using $.

Basic Example

@ct_redis.cache(template_cache_key='idle_time_value:$idle_time', field='$idle_time')
def get_idle_time_value(idle_time: str):
    return {'idle_time': idle_time}
  • If idle_time = 123, the cache key will be idle_time_value:123.

Nested Dictionary Example

@ct_redis.cache(template_cache_key='user_cache:$user.id', field='$user.id')
def get_user(user: dict):
    return user
  • If user = {'id': 01, 'name': 'User1'}, the cache key will be user_cache:01.

Nested Object Example

class User:
    def __init__(self, id, name):
        self.id = id
        self.name = name

@ct_redis.cache(template_cache_key='user_cache:$user.id', field='$user.id')
def get_user_obj(user: User):
    return {'id': user.id, 'name': user.name}
  • If user.id = 01, the cache key will be user_cache:01.

Deeply Nested Example

@ct_redis.cache(template_cache_key='deep_cache:$data.profile.info.id', field='$data.profile.info.id')
def get_deep(data: dict):
    return data
  • If data = {'profile': {'info': {'id': 01}}}, the cache key will be deep_cache:01.

Static Key Example

@ct_redis.cache(template_cache_key='static_key')
def get_static():
    return {'result': 1}
  • The cache key will always be static_key.

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

ct_redis_cache_lib-0.0.3.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ct_redis_cache_lib-0.0.3-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file ct_redis_cache_lib-0.0.3.tar.gz.

File metadata

  • Download URL: ct_redis_cache_lib-0.0.3.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.15

File hashes

Hashes for ct_redis_cache_lib-0.0.3.tar.gz
Algorithm Hash digest
SHA256 5aeb00ac44a5b889b1829eccbd021d969bfe2b805ee39c0502396c203b2aac82
MD5 fd8eb9a6969a7ec7684cec75232fba42
BLAKE2b-256 fd415559666535a909964bf9fee5e14082b11202da7e343c06795baac10896ce

See more details on using hashes here.

File details

Details for the file ct_redis_cache_lib-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for ct_redis_cache_lib-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4ea062bf5e61bb3ef75d9941981df7063b75899e3a5ba21b8a56e01a90965b53
MD5 ef84eaeed0fce91c347fd033d5e3a2c1
BLAKE2b-256 cb08f215c0748f6b3e31a2d5be03635bcda107bbaf1f466ae6c69de19aa38504

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page