You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was investigating an admin list page slowness and found out that all options are queried and loaded into memory, which, in case of a large number of options (usually the motivation itself for using autocomplate) makes the page load very slowly.
Stack trace leading to the problem looks like this:
django/contrib/admin/options.py in wrapper(686)
return self.admin_site.admin_view(view)(*args, **kwargs)
django/views/decorators/cache.py in _wrapped_view_func(62)
response = view_func(request, *args, **kwargs)
django/contrib/admin/sites.py in inner(242)
return view(request, *args, **kwargs)
django/contrib/admin/options.py in changelist_view(1931)
cl = self.get_changelist_instance(request)
django/contrib/admin/options.py in get_changelist_instance(834)
return ChangeList(
django/contrib/admin/views/main.py in __init__(122)
self.queryset = self.get_queryset(request)
django/contrib/admin/views/main.py in get_queryset(503)
) = self.get_filters(request)
django/contrib/admin/views/main.py in get_filters(182)
spec = field_list_filter_class(
djaa_list_filter/admin.py in __init__(53)
super().__init__(field, request, params, model, model_admin, field_path)
django/contrib/admin/filters.py in __init__(188)
self.lookup_choices = self.field_choices(field, request, model_admin)
django/contrib/admin/filters.py in field_choices(225)
return field.get_choices(include_blank=False, ordering=ordering)
Using Django 4.1.1.
The text was updated successfully, but these errors were encountered:
salomvary
added a commit
to salomvary/django-admin-autocomplete-list-filter
that referenced
this issue
Oct 21, 2022
I was investigating an admin list page slowness and found out that all options are queried and loaded into memory, which, in case of a large number of options (usually the motivation itself for using autocomplate) makes the page load very slowly.
Stack trace leading to the problem looks like this:
Using Django 4.1.1.
The text was updated successfully, but these errors were encountered: