Reputation: 399
I am a bit new to firebase and I have of course many questions about it. In particular I would like to understand firebase membership duration better. I know just from the documentation that firebase checks periodically to see if a user still qualifies to an audience but if a user still meets the requirements but is over the membership duration then they are excluded.
Upvotes: 0
Views: 1218
Reputation: 598785
A user can rejoin an audience if they meet the conditions for that audience again.
What you're describing is known as the 30-day-active user count (or MAU for monthly active users). It is the number of users that we active in a certain 30-day time interval. Since you say they join the audience by one event, they only need to trigger the event once in that period to be considered part of the audience.
Upvotes: 1