Not sure if this is a django issue or just a python issue. I'm trying to get cache working by accepting the values from a function that returns multiple values.
Currently the page is giving me this error on the heavy_view function: "'NoneType' object is not iterable"
Is there anyway to get the "counter, college_user, name_college_list = cache.get(cache_key)" line working? And then the check for if its empty or not. Thanks!
#Views.py
def filter_results():
#some code here
return counter, college_user, name_college_List
def heavy_view(request):
cache_key = 'facebookcache'
cache_time = 180 # time to live in seconds
counter, college_user, name_college_list = cache.get(cache_key)
if not cache.get(cache_key):
result = filter_results() # some calculations here
cache.set(cache_key, result, cache_time)
return result