Opens a connection to a Redis server (or cluster).
gRedis is redisConnection
gRedis.Server = "MyRedisServer:7001"
IF RedisConnect(gRedis) = False THEN
ErrorInfo()
END
Syntax
<Result> = RedisConnect(<Connection>)
<Result>: Boolean
- True if the connection was established,
- False otherwise. ErrorInfo is used to identify the error. For more details, see the documentation about Redis.
<Connection>: redisConnection variable
Name of the redisConnection variable that corresponds to the connection to a Redis server (or cluster).
Business / UI classification: Business Logic