- Author:
- menendez
- Posted:
- May 5, 2008
- Language:
- Python
- Version:
- .96
- Tags:
- cache optimization get_cache_or_object
- Score:
- 6 (after 6 ratings)
Replaces something like this: cache_key = 'game1' the_game = cache.get(cache_key) if not the_game: the_game = Game.objects.get(id=1) cache.set(cache_key, the_game, 60245)
With this: the_game = get_cache_or_query('game1', Game, seconds_to_cache=60245, id=1)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | def get_cache_or_query(cache_key, model, seconds_to_cache=900, **kwargs):
'''
Based on concept by Rudy Menendez.
Gets the query from cache or returns the orm.
Example: the_game = get_cache_or_query('game1', Game,
seconds_to_cache=60*24*5, id=1) # 5 day timeout
'''
from django.core.cache import cache
q = cache.get(cache_key)
if not q:
q = model.objects.get(**kwargs)
cache.set(cache_key, q, seconds_to_cache)
return q
|
More like this
- Serialize a model instance by chriswedgwood 1 week, 1 day ago
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 9 months, 1 week ago
- Crispy Form by sourabhsinha396 10 months ago
- ReadOnlySelect by mkoistinen 10 months, 2 weeks ago
- Verify events sent to your webhook endpoints by santos22 11 months, 2 weeks ago
Comments
Please login first before commenting.