8 configuration options · available in Rust, Python, Node.js, Java
use opendal::Operator;
let op = Operator::via_iter("redis", [
("db".to_string(), "1000".to_string()),
])?;
use opendal::Operator;
let op = Operator::via_iter("redis", [
// network address of the Redis service. Can be "tcp://127.0.0.1:6379", e.g.
//
// default is "tcp://127.0.0.1:6379"
// ("endpoint".to_string(), "...".to_string()),
// network address of the Redis cluster service. Can be "tcp://127.0.0.1:6379,tcp://127.0.0.1:6380,tcp://127.0.0.1:6381", e.g.
//
// default is None
// ("cluster_endpoints".to_string(), "...".to_string()),
// The maximum number of connections allowed.
//
// default is 10
// ("connection_pool_max_size".to_string(), "1000".to_string()),
// the username to connect redis service.
//
// default is None
// ("username".to_string(), "...".to_string()),
// the password for authentication
//
// default is None
// ("password".to_string(), "...".to_string()),
// the working directory of the Redis service. Can be "/path/to/dir"
//
// default is "/"
// ("root".to_string(), "...".to_string()),
// the number of DBs redis can take is unlimited
//
// default is db 0
("db".to_string(), "1000".to_string()),
// The default ttl for put operations.
// ("default_ttl".to_string(), "10s".to_string()),
])?;
Every option is passed as a string key; OpenDAL parses it into the right type. Some services may require building the binding with the matching services-* feature enabled.
| Key | Type | Required | Description |
|---|---|---|---|
endpoint | string | no | network address of the Redis service. Can be "tcp://127.0.0.1:6379", e.g. default is "tcp://127.0.0.1:6379" |
cluster_endpoints | string | no | network address of the Redis cluster service. Can be "tcp://127.0.0.1:6379,tcp://127.0.0.1:6380,tcp://127.0.0.1:6381", e.g. default is None |
connection_pool_max_size | integer | no | The maximum number of connections allowed. default is 10 |
username | string | no | the username to connect redis service. default is None |
password | string | no | the password for authentication default is None |
root | string | no | the working directory of the Redis service. Can be "/path/to/dir" default is "/" |
db | integer | yes | the number of DBs redis can take is unlimited default is db 0 |
default_ttl | duration | no | The default ttl for put operations. |