You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Couchbase Analytics service allows to to search without creating indexes. It's dedicates server which do search without data update. This will help us with SCIM which uses custom attributes. And as result requires more and more indexes for proper work.
The text was updated successfully, but these errors were encountered:
Alternative solution is to use adaptive indexes.
For example:
CREATE INDEX `def_gluu_user_all2` ON `gluu_user`(DISTINCT PAIRS(self)) WHERE objectClass = "gluuPerson"
CREATE INDEX `def_gluu_user_all` ON `gluu_user`(DISTINCT PAIRS(uid, mail, custom1, custom2, etc)) WHERE objectClass = "gluuPerson"
yurem
transferred this issue from GluuFederation/oxCore
May 20, 2021
Couchbase Analytics service allows to to search without creating indexes. It's dedicates server which do search without data update. This will help us with SCIM which uses custom attributes. And as result requires more and more indexes for proper work.
The text was updated successfully, but these errors were encountered: