object RedisCodec extends Serializable
- Source
- data.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RedisCodec
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val Ascii: RedisCodec[String, String]
- val Bytes: RedisCodec[Array[Byte], Array[Byte]]
- val Utf8: RedisCodec[String, String]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def decryptSupplier[F[_]](key: SecretKeySpec)(implicit arg0: Sync[F]): F[CipherSupplier]
It creates a CipherSupplier given a secret key for decryption.
It creates a CipherSupplier given a secret key for decryption.
A CipherSupplier is needed for RedisCodec.secure
- def deflate[K, V](codec: RedisCodec[K, V]): RedisCodec[K, V]
It compresses every value sent to Redis and it decompresses every value read from Redis using the DEFLATE compression algorithm.
- def encryptSupplier[F[_]](key: SecretKeySpec)(implicit arg0: Sync[F]): F[CipherSupplier]
It creates a CipherSupplier given a secret key for encryption.
It creates a CipherSupplier given a secret key for encryption.
A CipherSupplier is needed for RedisCodec.secure
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def gzip[K, V](codec: RedisCodec[K, V]): RedisCodec[K, V]
It compresses every value sent to Redis and it decompresses every value read from Redis using the GZIP compression algorithm.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def secure[K, V](codec: RedisCodec[K, V], encrypt: CipherSupplier, decrypt: CipherSupplier): RedisCodec[K, V]
It encrypts every value sent to Redis and it decrypts every value read from Redis using the supplied CipherSuppliers.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
This is the API documentation for the Redis4Cats library.