Description:
Connect to the Redis database.
Syntax:
redis_open(url,password)
Note:
The RedisCli external library function (See External Library Guide) connects to the Redis database according to the Redis server’s URL.
Parameter:
|
url |
A Redis server’s URL. |
|
password |
The password to access the Redis server |
Return value:
Cursor
Example:
|
|
A |
|
|
1 |
=redis_open("127.0.0.1:6379","000000") |
|