I am wondering if Django admin can handle a huge amount of records.
Say I have a 2 million users, how the pagination will be handled for example? Will it be dead slow because every time all the records will be counted to be provided to the offset?
Note: I plan to use PostgreSQL.
Thanks.