Alphaxard Nganga
Alphaxard Nganga

Reputation: 65

Clear Django Cache

I am using django 3.0. How do I clear cache in my django project.

I have tried the below two methods given out as answers to questions in the this forum but they are not working out: python manage.py clean_pyc python manage.py clear-cache

Upvotes: 0

Views: 8663

Answers (2)

cảnh nguyễn
cảnh nguyễn

Reputation: 898

from django.core.cache import cache
cache.clear()

Upvotes: 2

Muhammad Mashood
Muhammad Mashood

Reputation: 74

Delete this pycache folder within your django app.

Upvotes: 1

Related Questions