from django.core.cache import cache def cache_custom_data(): data = {"key": "value"} # دادههای موردنظر cache.set("my_custom_data", data, timeout=60*60) # ذخیره برای یک ساعت def get_cached_data(): data = cache.get("my_custom_data") return data