Login

Simple Signal to denormalize vote counts in django-voting

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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

Please login first before commenting.