|
|
|
|
|
by pc2g4d
3136 days ago
|
|
Very interesting. I glanced at the code to see if there were obvious performance issues. All I noticed was a triple `map` invocation in https://github.com/YosaiProject/yosai_libauthz/blob/master/s... Not sure what the compiler does with that, but I'd expect that it means you're running through those elements three times. I imagine it would be better to reduce this to one `map` call. |
|
here's the actual rust library: https://github.com/Dowwie/rust-authz/blob/master/src/authz.r...
the project includes a bench