mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Fixes #259. Thanks to the linked worked example, we can reduce a problematic set of clones during filter metadata injection. Previously we had to create a new hashset every time we went to resolve index metadata in queries, but with this change we can now just use the copy-on-write hashset instead. This will improve cache access, reduces clones, and more. In a cargo test run this takes out nearly 15% of the execution time (on my system reducing the test time by nearly 35 seconds). https://github.com/sunshowers/borrow-complex-key-example/blob/master/src/lib.rs
9 lines
232 B
TOML
9 lines
232 B
TOML
bindaddress = "127.0.0.1:8443"
|
|
ldapbindaddress = "127.0.0.1:3636"
|
|
db_path = "/tmp/kanidm.db"
|
|
db_fs_type = "zfs"
|
|
tls_ca = "../insecure/ca.pem"
|
|
tls_cert = "../insecure/cert.pem"
|
|
tls_key = "../insecure/key.pem"
|
|
log_level = "perfbasic"
|