package filecache
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- final case class Config[-A, B] extends ConfigLike[A, B] with Product with Serializable
The configuration for the producer, containing information about the cache folder, cache capacity, etc.
- final class ConfigBuilder[A, B] extends ConfigLike[A, B]
A configuration builder is a mutable version of
Configand will be implicitly converted to the latter when passed intoProducer.apply. - sealed trait ConfigLike[-A, -B] extends AnyRef
- final case class Limit(count: Int = -1, space: Long = -1L) extends Product with Serializable
Maximum capacity specification
Maximum capacity specification
- count
maximum number of cache entries (or
-1for unlimited entries)- space
maximum volume of cache in bytes (or
-1Lfor unlimited space)