Ghost/ghost/members-api/lib
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
..
controllers Fixed invalid tierId handling during member paid checkout (#20455) 2024-06-24 15:33:39 +00:00
repositories Added logging to track offer redemption (#20329) 2024-06-05 17:48:43 +01:00
services Added option param to skip distinct from count query for members API 2024-06-27 17:35:19 +05:30
members-api.js