RedisDepot

data class RedisDepot(val host: String? = null, val port: Int? = null, val db: Int? = null)

Represents a Redis depot configuration.

Constructors

Link copied to clipboard
constructor(host: String? = null, port: Int? = null, db: Int? = null)

Properties

Link copied to clipboard
val db: Int? = null

The database number for the Redis connection. Default is null.

Link copied to clipboard
val host: String? = null

The host for the Redis connection. Default is null.

Link copied to clipboard
val port: Int? = null

The port for the Redis connection. Default is null.