use LRU cache for cached certificates

fixes #268
This commit is contained in:
Lucas Clemente 2016-09-08 23:08:57 +02:00
parent 75e15e03f7
commit 5d0399bfe3
3 changed files with 50 additions and 29 deletions

View file

@ -85,3 +85,6 @@ const MaxIdleTimeout = 1 * time.Minute
// MaxTimeForCryptoHandshake is the default timeout for a connection until the crypto handshake succeeds.
const MaxTimeForCryptoHandshake = 10 * time.Second
// NumCachedCertificates is the number of cached compressed certificate chains, each taking ~1K space
const NumCachedCertificates = 128