# Things You Must Know About Django Admin As Your App Gets Bigger

DevFeed: [Things You Must Know About Django Admin As Your App Gets Bigger](<https://devfeed.tech/articles/things-you-must-know-about-django-admin-as-your-app-gets-bigger-33943.md>)

Original publisher: [Read original article](<https://hakibenita.com/things-you-must-know-about-django-admin-as-your-app-gets-bigger>)

Author: Haki Benita

Published: 2016-08-04T21:00:00Z

Content type: tutorial

Language: en

Sources: [Haki Benita](<https://devfeed.tech/sources/haki-benita.md>)

Topics: [Django](<https://devfeed.tech/topics/django.md>), [Python](<https://devfeed.tech/topics/python.md>), [SQL](<https://devfeed.tech/topics/sql.md>), [PostgreSQL](<https://devfeed.tech/topics/postgresql.md>), [Databases](<https://devfeed.tech/topics/databases.md>), [debug](<https://devfeed.tech/topics/debug.md>)

Tags: [articles](<https://devfeed.tech/tags/articles.md>), [debug](<https://devfeed.tech/tags/debug.md>), [dependencies](<https://devfeed.tech/tags/dependencies.md>), [django](<https://devfeed.tech/tags/django.md>), [django-admin](<https://devfeed.tech/tags/django-admin.md>), [postgresql](<https://devfeed.tech/tags/postgresql.md>), [python](<https://devfeed.tech/tags/python.md>), [query](<https://devfeed.tech/tags/query.md>), [sql](<https://devfeed.tech/tags/sql.md>)

## AI overview

A tutorial on improving Django admin performance as applications grow. It focuses on reducing SQL queries, identifying N+1 query problems, and using joins and query-monitoring techniques to reduce database load.

## Source excerpt

The Django admin is a very powerful tool. We use it for day to day operations, browsing data and support. As we grew some of our projects from zero to 100K+ users we started experiencing some of Django's admin pain points - long response times and heavy load on the database.