blob: e93efa082e894a2aced1d4ef119a012c1ae0c0a4 [file] [view]
## Capabilities
This service can be used to:
- [ ] create_dir
- [x] stat
- [x] read
- [x] write
- [x] delete
- [ ] list
- [ ] copy
- [ ] rename
- [ ] ~~presign~~
**Note**: As for [Known Limitations - FoundationDB](https://apple.github.io/foundationdb/known-limitations), keys cannot exceed 10,000 bytes in size, and values cannot exceed 100,000 bytes in size. Errors will be raised by OpenDAL if these limits are exceeded.
## Configuration
- `root`: Set the work directory for this backend.
- `config_path`: Set the configuration path for foundationdb. If not provided, the default configuration path will be used.
You can refer to [`FoundationdbBuilder`]'s docs for more information
## Example
### Via Builder
```rust,no_run
use opendal_core::Operator;
use opendal_core::Result;
use opendal_service_foundationdb::Foundationdb;
#[tokio::main]
async fn main() -> Result<()> {
let mut builder = Foundationdb::default()
.config_path("/etc/foundationdb/foundationdb.conf");
let op: Operator = Operator::new(builder)?.finish();
Ok(())
}
```