Merge: * whois,rdns: use 1 hour cache TTL

Close #1157

* commit 'abd251c5c167fd33c047af8af39e8b8e2d61fd85':
  * whois,rdns: use 1 hour cache TTL
This commit is contained in:
Simon Zolin 2019-11-07 14:06:06 +03:00
commit 4d32d42ba2
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ func (r *RDNS) Begin(ip string) {
// TTL expired
}
expire = make([]byte, 8)
const ttl = 12 * 60 * 60
const ttl = 1 * 60 * 60
binary.BigEndian.PutUint64(expire, now+ttl)
_ = r.ipAddrs.Set([]byte(ip), expire)

View File

@ -205,7 +205,7 @@ func (w *Whois) Begin(ip string) {
// TTL expired
}
expire = make([]byte, 8)
const ttl = 12 * 60 * 60
const ttl = 1 * 60 * 60
binary.BigEndian.PutUint64(expire, now+ttl)
_ = w.ipAddrs.Set([]byte(ip), expire)