Modules
Redis
redis
- redis
Connect(host, port, password)
⇒boolean
GetServerInfo(host, port)
⇒string
GetServerInfoAuth(host, port, password)
⇒string
IsAuthenticated(host, port)
⇒boolean
RunLuaScript(host, port, password, script)
(redis).Connect(host, port, password) ⇒ boolean
Connect tries to connect redis server with password
Kind: inner method of redis
Returns: boolean
- - The status of the connection.
Throws:
error
- The error encountered during connection.
Param | Type | Description |
---|---|---|
host | string | The host of the redis server. |
port | number | The port of the redis server. |
password | string | The password for the redis server. |
Example
(redis).GetServerInfo(host, port) ⇒ string
GetServerInfo returns the server info for a redis server
Kind: inner method of redis
Returns: string
- - The server info.
Throws:
error
- The error encountered during getting server info.
Param | Type | Description |
---|---|---|
host | string | The host of the redis server. |
port | number | The port of the redis server. |
Example
(redis).GetServerInfoAuth(host, port, password) ⇒ string
GetServerInfoAuth returns the server info for a redis server
Kind: inner method of redis
Returns: string
- - The server info.
Throws:
error
- The error encountered during getting server info.
Param | Type | Description |
---|---|---|
host | string | The host of the redis server. |
port | number | The port of the redis server. |
password | string | The password for the redis server. |
Example
(redis).IsAuthenticated(host, port) ⇒ boolean
IsAuthenticated checks if the redis server requires authentication
Kind: inner method of redis
Returns: boolean
- - The authentication status.
Throws:
error
- The error encountered during checking authentication.
Param | Type | Description |
---|---|---|
host | string | The host of the redis server. |
port | number | The port of the redis server. |
Example
(redis).RunLuaScript(host, port, password, script)
RunLuaScript runs a lua script on the redis server
Kind: inner method of redis
Throws:
error
- The error encountered during running the lua script.
Param | Type | Description |
---|---|---|
host | string | The host of the redis server. |
port | number | The port of the redis server. |
password | string | The password for the redis server. |
script | string | The lua script to run. |
Example
Was this page helpful?