I'm trying to sort a list of posts where votes have priority over the date.

I have my own app called UserPost and I'm using the django-voting app to do votes.

class UserPost(models.Model):
    user = models.ForeignKey(User)

    datetime = models.DateTimeField(auto_now_add=True)
    text = models.CharField(max_length=255, blank=True)
    is_deleted = models.BooleanField(default=False)
    vote = models.ForeignKey(Vote)

Right now, I'm sorting without votes taking precedence yet:

posts_list = sorted(posts_list, key=attrgetter('datetime'))

What's the best way to go about this?

Thanks!

link|improve this question

Um, in the query. – Ignacio Vazquez-Abrams Jan 4 at 3:27
Quick tip: you should use posts_list.sort(key=attrgetter('datetime')) instead of using the sorted built-in function. The sorted function will create a copy of the list, while the sort method of a list sorts the list in-place and is slightly faster (and uses approximately half as much memory). – mlefavor Jan 4 at 3:42
@mlefavor: I doubt that sorting will be much of a bottleneck, unless you have a list with more than a million elements. Use whatever is most readable for the situation, worry about performance later. – Lie Ryan Jan 4 at 3:55
feedback

2 Answers

up vote 2 down vote accepted

Tuples are sorted lexicographically, therefore if you return a tuple for sorted's key= argument you can sort by votes then by dates:

posts_list = sorted(posts_list, key=lambda post: (Vote.objects.get_score(post)['score'], post.datetime))

Alternatively, you might want to also look at the ordering option in a django Model's Meta class or the order_by method on django Queryset. They will do the sorting on the database in one query, so can be much faster. Alternatively, you can try the posts_list.get_score_in_bulk() to reduce the number of queries to two (one for posts_list, and one for get_score_in_bulk), like so:

scores = Vote.objects.get_score_in_bulk(posts_list)
posts_list = sorted(posts_list, key=lambda post: (scores[post.id]['score'], post.datetime))
link|improve this answer
Thanks, this was really helpful! – incarna Jan 4 at 12:54
feedback

You can sort it like that:

def posts_sorting(post1, post2):
    # put here the way you compare posts
    pass # return 1 if post2 before post1, -1 otherwise, 0 if they are "equal"

posts_list = sorted(posts_list, cmp=posts_sorting)

where posts_sorting is the function that compares your posts.

link|improve this answer
cmp is deprecated. – Ignacio Vazquez-Abrams Jan 4 at 4:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.