Files
@ 85bb68f64597
Branch filter:
Location: kallithea/scripts/logformat.py
85bb68f64597
1.7 KiB
text/x-python
notifications: improve response time when number of notifications is large
NotificationsController always retrieved materialized list of all notifications
in database, even to display only 10 of them. This is improved by feeding
SQLAlchemy Query object directly to webhelpers.paginate.Page, avoiding eager
load of all notifications.
NotificationsController always retrieved materialized list of all notifications
in database, even to display only 10 of them. This is improved by feeding
SQLAlchemy Query object directly to webhelpers.paginate.Page, avoiding eager
load of all notifications.