Packages

class MongoCacheRepository[CacheId] extends PlayMongoRepository[CacheItem]

Linear Supertypes
PlayMongoRepository[CacheItem], MongoDatabaseCollection, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoCacheRepository
  2. PlayMongoRepository
  3. MongoDatabaseCollection
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new MongoCacheRepository(mongoComponent: MongoComponent, collectionName: String, replaceIndexes: Boolean = true, ttl: Duration, timestampSupport: TimestampSupport, cacheIdType: CacheIdType[CacheId], extraIndexes: Seq[IndexModel] = Seq.empty, extraCodecs: Seq[Codec[_]] = Seq.empty)(implicit ec: ExecutionContext)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. lazy val collection: MongoCollection[CacheItem]
    Definition Classes
    PlayMongoRepository
  7. final val collectionName: String
    Definition Classes
    PlayMongoRepository → MongoDatabaseCollection
  8. def delete[A](cacheId: CacheId)(dataKey: DataKey[A]): Future[Unit]
  9. def deleteEntity(cacheId: CacheId): Future[Unit]
  10. final val domainFormat: Format[CacheItem]
    Definition Classes
    PlayMongoRepository
  11. def ensureIndexes(): Future[Seq[String]]
    Definition Classes
    PlayMongoRepository
  12. def ensureSchema(): Future[Unit]
    Definition Classes
    PlayMongoRepository
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def findById(cacheId: CacheId): Future[Option[CacheItem]]
  16. def get[A](cacheId: CacheId)(dataKey: DataKey[A])(implicit arg0: Reads[A]): Future[Option[A]]
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final val indexes: Seq[IndexModel]
    Definition Classes
    PlayMongoRepository → MongoDatabaseCollection
  20. lazy val initialised: Future[Unit]
    Definition Classes
    PlayMongoRepository
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final val optSchema: Option[BsonDocument]
    Definition Classes
    PlayMongoRepository
  26. def put[A](cacheId: CacheId)(dataKey: DataKey[A], data: A)(implicit arg0: Writes[A]): Future[CacheItem]
  27. lazy val requiresTtlIndex: Boolean

    Can be overridden if the repository manages it's own data cleanup.

    Can be overridden if the repository manages it's own data cleanup.

    A comment should be added to document why the repository does't require a ttl index if overriding.

    Attributes
    protected[mongo]
    Definition Classes
    PlayMongoRepository
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from MongoDatabaseCollection

Inherited from AnyRef

Inherited from Any

Ungrouped