i added this code to polls/models.py
class Question(models.Model):
was_published_recently.admin_order_field = 'pub_date'
was_published_recently.boolean = True
was_published_recently.short_description = 'Published recently?'
Hello all!
I was interested to see if anyone knows what the best way to do latency testing testing for APIs would be?
So for example if I am using Django Rest Framework and I want to test the API latency. What goes into testing this? Are there any gotchas?