https://github.com/realpython/django-redis-cache
https://github.com/realpython/django-redis-cache
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/realpython/django-redis-cache
- Owner: realpython
- Created: 2016-09-19T21:41:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T09:25:46.000Z (almost 3 years ago)
- Last Synced: 2025-05-07T21:04:20.285Z (7 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 32
- Watchers: 3
- Forks: 30
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caching in Django with Redis
## Want to learn how to build this project?
Check out the [blog post](https://realpython.com/blog/python/caching-in-django-with-redis/).
## Want to use this project?
1. Fork/Clone
1. Create and activate a virtual environment
1. Install dependencies - `pip install -r requirements`
1. Make migrations - `python manage.py makemigrations cookbook`
1. Build the database - `python manage.py migrate`
1. Create a superuser - `python manage.py createsuperuser`
1. Add seed data - `python manage.py loaddata cookbook/fixtures/cookbook.json`
1. Run the development server - `python manage.py runserver`