Ghost/ghost/members-api/lib/services
Princi Vershwal 7bffe5b79a
Added option param to skip distinct from count query for members API
ref https://linear.app/tryghost/issue/SLO-173/removed-distinct-from-member-count-query

Performance of GET /members API can be improved by dropping the distinct from the total members count query.

select count(distinct members.id) as aggregate from `members`; // 275ms
select count(*) as aggregate from `members`; // 30ms

In this case we know that the result set will always be unique.
2024-06-27 17:35:19 +05:30
..
GeolocationService.js Added eslint rule for file naming convention 2023-05-09 12:34:34 -04:00
MemberBREADService.js Added option param to skip distinct from count query for members API 2024-06-27 17:35:19 +05:30
TokenService.js Added eslint rule for file naming convention 2023-05-09 12:34:34 -04:00