Opened 9 years ago

Last modified 9 years ago

#25399 closed Cleanup/optimization

Improve performance for user lookups by adding database index — at Initial Version

Reported by: SimonSteinberger Owned by: nobody
Component: contrib.auth Version: dev
Severity: Normal Keywords: user, database, index
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Having a user database table with millions of entries, even a simple look-up by username (or email address) takes a rather long time and causes a significant overhead on servers. For example, the Django database query for a user signing in looks roughly like this:

SELECT * FROM "accounts_user" WHERE UPPER("accounts_user"."email"::text) = UPPER('foo@…')

The problem is, without a database index, the string transformation and comparison takes a lot of resources and even with a powerful infrastructure, such a query may take over a second when having a million or more users. With the growing user base, the query gets slower an slower.

By adding a database index, the process takes only about a microsecond. Using PostgreSQL, we've simply added the index manually, which works fine:

CREATE INDEX accounts_myuser_username_upper ON accounts_myuser (UPPER(username));

Yet, this is a crucial part of most web applications and therefore, it would probably make sense if Django created the index automatically for the integrated User and AbstractUser classes. Or at least, the issue could be pointed out clearly in the docs.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top