From: Remi Gacogne Date: Fri, 17 Jan 2020 15:45:42 +0000 (+0100) Subject: auth: Use a hashed index instead of an ordered one for the key cache X-Git-Tag: auth-4.3.0-beta1~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F8715%2Fhead;p=thirdparty%2Fpdns.git auth: Use a hashed index instead of an ordered one for the key cache --- diff --git a/pdns/dnsseckeeper.hh b/pdns/dnsseckeeper.hh index f280f4de98..0965fea847 100644 --- a/pdns/dnsseckeeper.hh +++ b/pdns/dnsseckeeper.hh @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -263,8 +264,8 @@ private: typedef multi_index_container< KeyCacheEntry, indexed_by< - ordered_unique,member >, - sequenced> + hashed_unique,member >, + sequenced> > > keycache_t; typedef multi_index_container<