object LfuCache
- Annotations
- @ApiMayChange()
- Source
- LfuCache.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LfuCache
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def apply[K, V](cachingSettings: CachingSettings): Cache[K, V]
Creates a new akka.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
- def apply[K, V](implicit system: ActorSystem): Cache[K, V]
- def create[K, V](settings: CachingSettings): Cache[K, V]
Java API Creates a new akka.http.caching.LfuCache, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
- def create[K, V](system: ActorSystem): Cache[K, V]
Java API Creates a new akka.http.caching.LfuCache using configuration of the system, with optional expiration depending on whether a non-zero and finite timeToLive and/or timeToIdle is set or not.
- def toJavaMappingFunction[K, V](loadValue: (K) => Future[V]): BiFunction[K, Executor, CompletableFuture[V]]
- def toJavaMappingFunction[K, V](genValue: () => Future[V]): BiFunction[K, Executor, CompletableFuture[V]]