Optional
init: S3BlockstoreInitPrivate
Readonly
bucketPrivate
Readonly
s3Private
Readonly
shardingDelete the record under the given key
Optional
options: AbortOptionsRemove values for the passed keys
Optional
options: AbortOptionsconst source = [new Key('awesome')]
for await (const key of store.deleteMany(source)) {
console.log(`deleted content with key ${key}`)
}
Read from s3
Optional
options: AbortOptionsExtending classes should override query
or implement this method
Optional
options: AbortOptionsRetrieve values for the passed keys
Optional
options: AbortOptionsfor await (const { key, value } of store.getMany([new Key('awesome')])) {
console.log(`got "${key}" = "${new TextDecoder('utf8').decode(value)}"`')
// => got "/awesome" = "datastore"
}
Check for the existence of the given key
Optional
options: AbortOptionsThis will check the s3 bucket to ensure access and existence
Optional
options: AbortOptionsStore the given value under the key.
Optional
options: AbortOptionsStore the given key/value pairs
Optional
options: AbortOptionsconst source = [{ key: new Key('awesome'), value: new Uint8Array([0, 1, 2, 3]) }]
for await (const { key, value } of store.putMany(source)) {
console.info(`put content for key ${key}`)
}
A blockstore backed by AWS S3