KillFilter
@author Marko Strukelj
Name |
Type |
Description |
|
Set ADDR filter |
|
|
Set ID filter |
|
|
Set SKIPME filter |
|
Set TYPE filter |
LimitOptions
SortOptions
SetOptions
MigrateOptions
ScanOptions
RedisOptions
This object controls the connection setting to the Redis Server. There is no need to specify most of the settings
since it has built the following sensible defaults:
* `encoding`: `UTF-8`
* `host`: `localhost`
* `port`: 6379
* `tcpKeepAlive`: true
* `tcpNoDelay`: true
However there are two extra properties that have no defaults since they are optional:
* `auth`
* `select`
The usage of this two extra properties is to setup required authentication and optionally the selection of the active
database at connection time. If you define this extra properties on every connection to Redis server this client
will perform the authentication handshake and database selection, however if you don't do this and call link
yourself in case of connection failure the client will not be able to perform the correct authentication handshake.
Name |
Type |
Description |
|
Set the eventbus address prefix for `PUB/SUB`. |
|
|
Set the password for authentication at connection time. |
|
|
Set the user defined character encoding, e.g.: `iso-8859-1`. |
|
|
Set the host name where the Redis server is listening. |
|
|
Set the tcp port where the Redis server is listening. |
|
|
Set the database to select at connection time. |
|
|
Set the TCP KeepAlive option |
|
|
Set the TCP NoDelay at the socket level. |