6 configuration options · available in Rust, Python, Node.js, Java
use opendal::Operator;
let op = Operator::via_iter("memcached", [
])?;
use opendal::Operator;
let op = Operator::via_iter("memcached", [
// network address of the memcached service.
//
// For example: "tcp://localhost:11211"
// ("endpoint".to_string(), "...".to_string()),
// the working directory of the service. Can be "/path/to/dir"
//
// default is "/"
// ("root".to_string(), "...".to_string()),
// Memcached username, optional.
// ("username".to_string(), "...".to_string()),
// Memcached password, optional.
// ("password".to_string(), "...".to_string()),
// The default ttl for put operations.
// ("default_ttl".to_string(), "10s".to_string()),
// The maximum number of connections allowed.
//
// default is 10
// ("connection_pool_max_size".to_string(), "1000".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 memcached service. For example: "tcp://localhost:11211" |
root | string | no | the working directory of the service. Can be "/path/to/dir" default is "/" |
username | string | no | Memcached username, optional. |
password | string | no | Memcached password, optional. |
default_ttl | duration | no | The default ttl for put operations. |
connection_pool_max_size | integer | no | The maximum number of connections allowed. default is 10 |