mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Let's kill that feed cache in 10 minutes, not 24 hours.
This commit is contained in:
parent
5ed1b06710
commit
d6b3e40dfb
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ def load_feeds(request):
|
|||
f.feed_address = mark_safe(f.feed_address)
|
||||
f.page_data = None
|
||||
|
||||
cache.set('usersub:%s' % user, feeds, SINGLE_DAY)
|
||||
cache.set('usersub:%s' % user, feeds, 600)
|
||||
|
||||
data = json.encode(feeds)
|
||||
return HttpResponse(data, mimetype='application/json')
|
||||
|
|
Loading…
Add table
Reference in a new issue