RedisCacheDriver constructor

RedisCacheDriver({
  1. String host = 'localhost',
  2. int port = 6379,
  3. String? password,
})

Creates a new RedisCacheDriver instance.

Implementation

RedisCacheDriver({
  this.host = 'localhost',
  this.port = 6379,
  this.password,
});