org.talares.api.cache

actors

package actors

Visibility
  1. Public
  2. All

Type Members

  1. class AutoUpdateCachingActor extends CachingActor

    A CachingActor which, after caching an item once, will always return a cached instance of this item.

    A CachingActor which, after caching an item once, will always return a cached instance of this item.

    To do this it keeps the item updated asynchronously by sending a org.talares.api.cache.actors.messages.CachingActorMessages.NotFound message to it's parent after a specified amount of accesses to the cached item.

    Since

    0.1.0

  2. trait CachingActor extends BaseActor with ActorLogging

    Blueprint for caching actors.

    Blueprint for caching actors.

    Since

    0.1.0

  3. class NoCachingActor extends CachingActor

    A CachingActor which does not apply any caching.

  4. class SimpleCachingActor extends CachingActor with ActorLogging

    A CachingActor which uses the supplied cache implementation.

    A CachingActor which uses the supplied cache implementation. It will honor the configuration of the cache implementation as it will not add any cache strategy of it's own.

    Since

    0.1.0

Value Members

  1. package messages

Ungrouped