rds_cache_go/utils.go

16 lines
229 B
Go
Raw Permalink Normal View History

2021-05-07 09:05:20 +08:00
package rds_cache_go
import "time"
// @method TTL
// @description: 过期时间校验
// @param ttl time.Duration
// @return time.Duration
func TTL(ttl time.Duration) time.Duration {
if ttl <= 0 {
return 0
}
return ttl
}