Redis

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

Represents a Redis configuration.

Constructors

Link copied to clipboard
constructor(host: String? = null, port: Int? = null, table: String? = 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.

Link copied to clipboard
val table: String? = null

The table name for the Redis connection. Default is null.