blobcache icon indicating copy to clipboard operation
blobcache copied to clipboard

Content-Addressed Storage

Results 8 blobcache issues
Sort by recently updated
recently updated
newest added

Includes initial methods for the QueueAPI, and removes the Await RPC. This is how watching Volumes for changes will be implemented in the future. It also opens up the possibility...

- Recommended fix is to add a `clobber` boolean to the function or a `CreateAtOptions` struct type and use that for the new argument.

enhancement

This would be a new volume type implemented the same as Remote volumes are. The difference is that Peer Volumes do not take a `netip.AddrPort` as part of their configuration....

Clients should be able to claim a transaction will take no longer than a set amount of time, or require no more than a set amount of data to be...

enhancement
design

Stale Volumes are higher order Volumes like Vaults. They wrap an inner Volume, and provide additional functionality. ```go type VolumeBackend_Stale struct { Inner Handle MaxStaleness time.Duration } ``` Stale Volumes...

design

Consensus Volumes are a Volume Backend where transactions perform a distributed consensus algorithm when Commit is called. On success, the data will have been replicated to a Quorum of Nodes....

design