Expand description
Buffers for reading and writing to crate::Blobs.
Modules§
Structs§
- Append
- A Blob wrapper that supports appending new data that is both read and write cached, and provides buffer-pool managed read caching of older data.
- Pool
- A Pool caches pages of Blob data in memory.
- PoolRef
- A reference to a Pool that can be shared across threads via cloning, along with the page size that will be used with it. Provides the API for interacting with the buffer pool in a thread-safe manner.
- Read
- A reader that buffers content from a Blob to optimize the performance of a full scan of contents.
- Write
- A writer that buffers content to a Blob to optimize the performance of appending or updating data.