tick

fun tick(now: Long, itemLifetimeSeconds: Long = DEFAULT_ITEM_LIFETIME_SECONDS)

Remove expired peers and items, the port of dht_default_storage::tick. Peers older than PEER_LIFETIME_SECONDS are purged and torrents left with no peers are removed; immutable/mutable items not heard about within itemLifetimeSeconds are dropped.

Parameters

now

current time in epoch-seconds.

itemLifetimeSeconds

item lifetime; libtorrent clamps this to a minimum of 120 minutes, which we replicate.