Skip to main content

persy

3 configuration options · available in Rust, Python, Node.js, Java

Quick start
use opendal::Operator;

let op = Operator::via_iter("persy", [
])?;
All configuration options (copy & trim)
Full reference
use opendal::Operator;

let op = Operator::via_iter("persy", [
// That path to the persy data file. The directory in the path must already exist.
// ("datafile".to_string(), "...".to_string()),

// That name of the persy segment.
// ("segment".to_string(), "...".to_string()),

// That name of the persy index.
// ("index".to_string(), "...".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.

Configuration reference

General3
KeyTypeRequiredDescription
datafilestringnoThat path to the persy data file. The directory in the path must already exist.
segmentstringnoThat name of the persy segment.
indexstringnoThat name of the persy index.