Casbin.NET
Casbin.NET copied to clipboard
An authorization library that supports access control models like ACL, RBAC, ABAC in .NET (C#)
Add automatic parallel test helper. The design needs further discussion.
The original benchmark for RBAC With Cache was a bit unrealistic because the same user and the same data was always requested, which is a highly cache-able scenario. By introducing...
https://github.com/casbin/casbin/issues/791
Support batch enforce and add corresponding test. #166 It used async stream to implement ```BatchEnforceAsync``` except ```NET452```. It added ```BatchEnforceParallel``` in ```Enforcer``` without a corresponding interface in ```IEnforcer```. I'm not...
feat: Adds WatcherMessage to offer detailed information to watchers once policies are changed.
test: Add 5 multi-threading test cases for ReadWritePolicyManager
Fix: #258, #263 ### What does it solve It add support for writing comments in model config files. ### What does it change It add a new const variable to...
Hello, I want to implement casbin in my .NET application but have a few questions. Is it best practice for the enforcer to be a singleton or to create a...