Add freelru.SetUpdateLifetimeOnGet/GetWithLifetime

This commit is contained in:
世界 2024-11-14 12:29:09 +08:00
parent ae139d9ee1
commit 7f621fdd78
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 60 additions and 21 deletions

View file

@ -37,6 +37,7 @@ func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Dur
cache = common.Must1(freelru.NewSharded[netip.AddrPort, *Conn](1024, maphash.NewHasher[netip.AddrPort]().Hash32))
}
cache.SetLifetime(timeout)
cache.SetUpdateLifetimeOnGet(true)
cache.SetHealthCheck(func(port netip.AddrPort, conn *Conn) bool {
select {
case <-conn.doneChan: