#django
Read more stories on Hashnode
Articles with this tag
Django’s post_save methods allow execution of custom code on an insert or update of a record after the save method is called. The serialized object...
Django's Paginator works to batch your query items into pages. Under the hood it uses lazy slicing which is accomplished in sql by offset and...
Below is the soft delete model you can inherit from. It uses an active field which on delete, it will only set to False and not actually delete the...
A Django's Auth table's indexes: mysql> show index from...
APIs especially for dashboards are predominantly read-heavy. To make for a user friendly experience, we should reduce response times of the APIs. The...
One of our Django admin pages on a service kept triggering a latency alert. The engineer determined that the culprit was a dynamic field that computed...