We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello i use has_permission('my.permission')in each row of a table
has_permission('my.permission')
and the query SELECT * FROM auth_permissionsWHEREname = 'my.permission' LIMIT 1 is call one time for each row
SELECT * FROM
WHERE
= 'my.permission' LIMIT 1
i think it is because getPermissionID() don't use cache is it a normal feature ?
getPermissionID()
it makes my app very slow
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello
i use
has_permission('my.permission')
in each row of a tableand the query
SELECT * FROM
auth_permissionsWHERE
name= 'my.permission' LIMIT 1
is call one time for each rowi think it is because
getPermissionID()
don't use cacheis it a normal feature ?
it makes my app very slow
The text was updated successfully, but these errors were encountered: