Cache integration with sqlalchemy.
Project description
Run test
make unittest
Installation / Rquirements
pip intall ecache
Usage
With Flask Integrate
from flask import Flask, jsonify
from flask_sqlalchemy import SQLAlchemy
from ecache.ext.flask_cache import CacheableMixin, query_callable, regions
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db'
app.debug = True
db = SQLAlchemy(app)
class User(db.Model, CacheableMixin):
"""Default backend is redis and expiration time is 1 hour, default
region name is `default`, you can override this:
cache_regions = your_regions
cache_label = your_label
"""
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String)
@app.route('/users')
def all_users():
"""Result will try to get from cache first. load from db if cache miss.
"""
users = [user.to_dict() for user in User.cache.filter()]
return jsonify(users=users)
@app.route('/users/<int:user_id')
def view_user(user_id):
"""Result will try to get from cache first. load from db if cache miss.
"""
user = User.cache.get(user_id)
return jsonify(user.to_dict())
More detail see example
With Pure SQLAlchemy model Integrate
# -*- coding: utf-8 -*-
import redis
from sqlalchemy import (Column, Integer, String, SmallInteger)
from ecache.core import cache_mixin
from ecache.db import db_manager, model_base
# alsosee :class:`ecache.db.DBManager`
DBSession = db_manager.get_session('test')
cache_client = redis.StrictRedis()
CacheMixin = cache_mixin()
DeclarativeBase = model_base()
class TodoListModel(DeclarativeBase, CacheMixin):
__tablename__ == 'todo_list'
TABLE_CACHE_EXPIRATION_TIME = 3600
id = Column(Integer, primary_key=True)
title = Column(String, default='')
is_done = Column(SmallInteger, default=0)
@classmethod
def get_todo(cls, todo_id):
todo = cls.get(todo_id) # `cls.get` inherited from `CacheMixin`
return todo
@classmethod
def add(cls, title):
todo = cls(title=title)
s = DBSession()
s.add(todo)
s.commit()
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
ecache-0.1.2.tar.gz
(11.9 kB
view details)
Built Distribution
ecache-0.1.2-py2-none-any.whl
(16.7 kB
view details)
File details
Details for the file ecache-0.1.2.tar.gz
.
File metadata
- Download URL: ecache-0.1.2.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31c7fb9a2827a8609a8c25b4b8decdcf837726b276b1aaed4b69ea09546e2304 |
|
MD5 | 2ef1e21ce0d07143d1091951869babcf |
|
BLAKE2b-256 | ad6ec62aa9904b2fad1247b14c7f3b8ce07555ccb6b567a4017874c48a014a23 |
File details
Details for the file ecache-0.1.2-py2-none-any.whl
.
File metadata
- Download URL: ecache-0.1.2-py2-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6775d27993086110427a72bc7ffe94ecd17ae4b71fbef52ef3951e5d2b7988e |
|
MD5 | 38c815d2fe1001219b036cebdd333bf7 |
|
BLAKE2b-256 | ef39c84485775a4dbab646bddb0071f90389549157323aeb6862c978c48c30bb |