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
One issue with access control policies is that, at the moment, we have the burden of regular expression overhead. This implies that scalability is limited.
Most matches however require simple wildcard logic, like resources:* or users:*:emails. It should be explored if wildcard matches perform better in memory and in databases and decided if regexp matching will be replaced with wildcard matching, or at least complemented.
The text was updated successfully, but these errors were encountered:
One issue with access control policies is that, at the moment, we have the burden of regular expression overhead. This implies that scalability is limited.
Most matches however require simple wildcard logic, like
resources:*
orusers:*:emails
. It should be explored if wildcard matches perform better in memory and in databases and decided if regexp matching will be replaced with wildcard matching, or at least complemented.The text was updated successfully, but these errors were encountered: