Class

com.twitter.finagle.factory

ServiceFactoryCache

Related Doc: package factory

Permalink

class ServiceFactoryCache[Key, Req, Rep] extends Closable

A "read-through" cache of service factories.

Eviction is based on cache size and idle time:

1. When the cache is full, a miss evicts the most idle factory. When no underlying factories are idle, a one-shot factory is created. This doesn't necessarily guarantee good performance: one-shots could be created constantly for a hot cache key, but should work well when there are a few hot keys.

2. Periodically evict factories that are idle for at least one TTI (time-to-idle) period. An idle factory could remain in the cache for up to (TTI * 2) minutes, with the caveat that we never expire the last, least-idle entry.

Linear Supertypes
Closable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ServiceFactoryCache
  2. Closable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ServiceFactoryCache(newFactory: (Key) ⇒ ServiceFactory[Req, Rep], timer: Timer, statsReceiver: StatsReceiver = NullStatsReceiver, maxCacheSize: Int = 8, tti: Duration = 10.minutes)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(key: Key, conn: ClientConnection): Future[Service[Req, Rep]]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def close(deadline: Time): Future[Unit]

    Permalink
    Definition Classes
    ServiceFactoryCache → Closable
  8. def close(after: Duration): Future[Unit]

    Permalink
    Definition Classes
    Closable
  9. final def close(): Future[Unit]

    Permalink
    Definition Classes
    Closable
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Closable

Inherited from AnyRef

Inherited from Any

Ungrouped