Hi everyone,
we have a setup where every user gets it’s own channel (i.e. 1 user -> 1 channel) . Lately we noticed that creating new users & channels takes way too long (up to 30s). Is there anything we can do to correct this?
for reference this is how we create the user & assign a channel:
Dictionary<string, dynamic> createUserJson = new Dictionary<string, dynamic>() { { “password”, createUserData.password }, { “admin_channels”, new string[] { userId } } };
createUserData.result = AdminWebRequest(syncGateway, “PUT”, path, JsonConvert.SerializeObject(createUserJson), out statusCode);
Thank you.