results = docDB.posts.find({"active":True }).sort("pop_score", pymongo.DESCENDING)

This is my sort right now. But the problem is, some things have the same "score". In that case, if they tie, I want them to sort by "time" within the ones who tied.

How do I do that? It's possible to do that in Mysql...

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can sort by more than one attribute at a time. e.g.

sort({name : 1, age : -1})

will sort by name ascending then by age descending

See here for reference: http://www.mongodb.org/display/DOCS/Sorting+and+Natural+Order

Edit:

In pymongo, that would be

.sort([['name', pymongo.ASCENDING], ['age', pymongo.DESCENDING]])

referenceL http://api.mongodb.org/python/current/api/pymongo/cursor.html#pymongo.cursor.Cursor.sort

link|improve this answer
How would you write that query in Pymongo? Pymongo doesn't accept a dictionary. It accepts 2 arguments – TIMEX Feb 9 '11 at 1:03
According to the documentation, pymongo sort can take a list of key value pairs to sort api.mongodb.org/python/current/api/pymongo/… – Charles Ma Feb 9 '11 at 1:06
feedback

Your Answer

 
or
required, but never shown

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