- Author:
- ericmoritz
- Posted:
- September 26, 2008
- Language:
- Python
- Version:
- 1.0
- Score:
- 1 (after 1 ratings)
This attaches a signal to the save and delete signals for the Vote object and recalculates the score for the object and stores it in that object's vote_score attribute.
This allows you to have a list of those objects and not have to calculate in the database the vote score for each object.
1 2 3 4 5 6 7 8 9 | # Register some signal handlers
def denormalize_votes(sender, instance, created=False, **kwargs):
"""This recalculates the vote total for the object
being voted on"""
instance.object.vote_score = Vote.objects.get_score(instance.object)['score']
instance.object.save()
models.signals.post_save.connect(denormalize_votes, sender=Vote)
models.signals.post_delete.connect(denormalize_votes, sender=Vote)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.