NewsBlur/utils/cache/utils.py

3 lines
85 B
Python
Raw Normal View History

2009-06-16 03:08:55 +00:00
def get_cache_key_for_pk(model, pk):
return '%s:%s' % (model._meta.db_table, pk)