# Functions

DeleteStoredData calls the storage to delete the object's data.
DeleteStoredObject calls the storage to delete the object and its data.
IsDiscarded returns true if the error passed in is the storage.Discarded error.
IsNotConnected returns true if the error passed in is the storage.NotConnected error.
IsNotFound returns true if the error passed in is the storage.NotFound error.

# Structs

BoltStorage is a Bolt based store.
Cache is the caching store.
Discarded is the error returned if an out-of-order chunk wasn't appended to the stored object because of memory usage protection.
Error is the error used in the storage layer.
InMemoryStorage is an in-memory store.
MongoStorage is a MongoDB based store.
NotConnected is the error returned if there is no connection to the database.
NotFound is the error returned if an object wasn't found.

# Interfaces

Storage is the interface for stores.