Date of slack thread: 6/21/24
Anonymous: Context: weāre using a stat sig segment to control access to our āearly access featuresā. We allow users in our app to toggle on if they want access to experimental features, and by doing so we add them to a segment, and reference that segment with feature gates to control access to features. However, the segment caps out at 1000 users, which we have just hit. As such, no one else can access this segment, and therefore the feature gates / features hooked up to this
My questions:
Cooper Reid (Statsig): <@U078VE7VD5G> The limit for ID Lists is now 1,000 ā this canāt be āraisedā.
You can use a conditional rule such as:
Custom Field (doc)
in_user_segment = true
and then, your application must determine if the user is in that large list of IDs and pass in bool true/false accordingly. When you initialize the SDK, the user object should the corresponding field:
user object
userID: '<example>',
custom: {
in_user_segment: true|false
}
}```