mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 08:42:20 +01:00
Changed cache location for userstats.
Settings needs to be added:
'userstats': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': '/var/tmp/MarietjeDjango_cache/default',
'OPTIONS': { 'MAX_ENTRIES': 1500 },
},
This commit is contained in:
@ -23,8 +23,8 @@ def recache_user_stats():
|
||||
for user in users:
|
||||
new_stats = user_stats(user['id'])
|
||||
cacheloc = 'userstats_{}'.format(user['id'])
|
||||
caches['default'].delete(cacheloc)
|
||||
caches['default'].set(cacheloc, new_stats, 48 * 3600)
|
||||
caches['userstats'].delete(cacheloc)
|
||||
caches['userstats'].set(cacheloc, new_stats, 48 * 3600)
|
||||
return new_stats
|
||||
|
||||
def to_days(time):
|
||||
|
||||
@ -20,7 +20,7 @@ def stats(request):
|
||||
return render(request, 'stats/stats.html', data, status=status)
|
||||
|
||||
def user_stats(request):
|
||||
stats = caches['default'].get('userstats_{}'.format(request.user.id))
|
||||
stats = caches['userstats'].get('userstats_{}'.format(request.user.id))
|
||||
status = 503
|
||||
current_age = None
|
||||
current_age_text = None
|
||||
|
||||
Reference in New Issue
Block a user