I have a model which has an IntegerField. this field may change after creation of object. I wanna use it for the "trend" part in my project, like those objects with the larger number must shown at top. so what is the best way (efficient) to do this. my current idea is:
class Map(models.Model):
rank = models.IntegerField()
and later use it like this:
sorted_list = Map.objects.order_by("-rank")[:50]
is this a good idea even if there are many requests for the trend page?