mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
2 lines
85 B
Python
2 lines
85 B
Python
def get_cache_key_for_pk(model, pk):
|
|
return '%s:%s' % (model._meta.db_table, pk)
|