mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
7b57d5b217
* perf(signer): reduce String allocations in V4 signing path - v4_ignored_headers: HashMap<String, bool> -> HashSet<&'static str> - Header lookups: k.to_string() -> k.as_str() (zero-copy) - Query params: Vec<(String, String)> -> Vec<(&str, &str)> (zero-copy) - Canonical request: single String with push_str instead of 6 intermediate Strings + join - 20 signer tests pass * fix(signer): align ignored header set type --------- Co-authored-by: houseme <housemecn@gmail.com>