# fastack-cache
fastack-cache is a caching plugin for [fastack](https://github.com/fastack-dev/fastack) ❤️
This plugin is inspired by the [django cache framework](https://docs.djangoproject.com/en/4.0/topics/cache/) and [django-redis](https://github.com/jazzband/django-redis)!
Supported cache backend:
* Redis:
* ``fastack_cache.backends.redis.RedisBackend`` - Sync version
* ``fastack_cache.backends.aioredis.AioRedisBackend`` - Async version
# Installation
```
pip install -U fastack-cache
```
# Usage
Add the plugin to your project configuration:
```python
PLUGINS = [
"fastack_cache",
...
]
```
Configuration:
```python
REDIS_HOST = "localhost"
REDIS_PORT = 6900
REDIS_DB = 0
CACHES = {
# cache name
"default": {
# cache backend
"BACKEND": "fastack_cache.backends.redis.RedisBackend",
# Cache options to be passed to the Redis(...) class
"OPTIONS": {
"host": REDIS_HOST,
"port": REDIS_PORT,
"db": REDIS_DB,
},
# Serializer for converting data into cache
"SERIALIZER": {
"CLASS": "fastack_cache.serializers.JSONSerializer",
"OPTIONS": {
# Option to pass when dumps() method in serializer class is called
"DUMPS": {},
# Option to pass when loads() method in serializer class is called
"LOADS": {}
}
}
}
}
```
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
资源分类:Python库 所属语言:Python 资源全名:fastack-cache-1.1.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源推荐
资源详情
资源评论
收起资源包目录
fastack-cache-1.1.0.tar.gz (18个子文件)
fastack-cache-1.1.0
PKG-INFO 3KB
pyproject.toml 2KB
LICENSE 1KB
fastack_cache
serializers
json.py 1KB
pickle.py 788B
__init__.py 136B
base.py 520B
decorators.py 3KB
helpers.py 785B
__init__.py 2KB
backends
aioredis.py 3KB
redis.py 3KB
dummy.py 557B
__init__.py 0B
base.py 1KB
key.py 494B
setup.py 2KB
README.md 1KB
共 18 条
- 1
资源评论
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Lgtaxian - 副本.mac
- ubuntu-22.04.5-desktop-amd64.iso.torrent
- 软考软件设计师考试笔记改进版
- 华硕主板BIOS关闭secure boot安全启动设置方法
- Kylin-Server-V10-SP3-General-Release-2303-ARM64.iso
- I219-V网卡驱动windows server适用
- php期末作业php+mysql+html期末作业聊天网站聊天室系统
- H3C驱动FocalTech-FocalFP-A02-v2.0.3.83-0-30005-0
- windows字体Fonts
- win11字体包,误删除字体的可以直接拷贝安装
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功