more list cache removals (followup to bc593b65
)
This commit is contained in:
parent
aa74a9fc43
commit
1875068a2f
3 changed files with 0 additions and 7 deletions
|
@ -153,7 +153,6 @@ def edit(data):
|
||||||
for key in list(state.cache):
|
for key in list(state.cache):
|
||||||
if key.startswith('group:'):
|
if key.startswith('group:'):
|
||||||
state.cache.delete(key)
|
state.cache.delete(key)
|
||||||
state.user().clear_smart_list_cache()
|
|
||||||
return response
|
return response
|
||||||
actions.register(edit, cache=False)
|
actions.register(edit, cache=False)
|
||||||
|
|
||||||
|
@ -168,9 +167,6 @@ def remove(data):
|
||||||
if 'ids' in data and data['ids']:
|
if 'ids' in data and data['ids']:
|
||||||
for i in models.Item.query.filter(models.Item.id.in_(data['ids'])):
|
for i in models.Item.query.filter(models.Item.id.in_(data['ids'])):
|
||||||
i.remove_file()
|
i.remove_file()
|
||||||
u = state.user()
|
|
||||||
u.clear_smart_list_cache()
|
|
||||||
u.clear_list_cache()
|
|
||||||
return {
|
return {
|
||||||
'items': []
|
'items': []
|
||||||
}
|
}
|
||||||
|
|
|
@ -327,14 +327,12 @@ def upgrade_db(old, new=None):
|
||||||
if not i in l.items:
|
if not i in l.items:
|
||||||
l.items.append(i)
|
l.items.append(i)
|
||||||
session.add(l)
|
session.add(l)
|
||||||
u.clear_list_cache()
|
|
||||||
for u in User.query.filter_by(peered=True):
|
for u in User.query.filter_by(peered=True):
|
||||||
l = u.library
|
l = u.library
|
||||||
for i in u.items.all():
|
for i in u.items.all():
|
||||||
if not i in l.items:
|
if not i in l.items:
|
||||||
l.items.append(i)
|
l.items.append(i)
|
||||||
session.add(l)
|
session.add(l)
|
||||||
u.clear_list_cache()
|
|
||||||
l.items_count()
|
l.items_count()
|
||||||
session.commit()
|
session.commit()
|
||||||
if old <= '20160107-508-a0c1970':
|
if old <= '20160107-508-a0c1970':
|
||||||
|
|
|
@ -183,7 +183,6 @@ def editList(data):
|
||||||
if l.type == 'static' and name != l.name:
|
if l.type == 'static' and name != l.name:
|
||||||
Changelog.record(state.user(), 'editlist', name, {'name': l.name})
|
Changelog.record(state.user(), 'editlist', name, {'name': l.name})
|
||||||
l.save()
|
l.save()
|
||||||
l.user.clear_smart_list_cache()
|
|
||||||
return l.json()
|
return l.json()
|
||||||
actions.register(editList, cache=False)
|
actions.register(editList, cache=False)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue