ExpiringCache

trait ExpiringCache[F[_], K, V]
class Object
trait Matchable
class Any

Value members

Abstract methods

def get(key: K): F[Option[V]]
def put(key: K, value: V, expirationTime: Instant): F[Unit]
def remove(key: K): F[Unit]