type

Backend

type Backend struct { root string filesystem filesystemOperations }

A filesystem implementation of storage.Backend.

Source adapters/storage/local/local.go:29

Methods

  • Backend.Ping()

    Verify that the root accepts a durable probe write, then remove the probe.

  • Backend.Put()

    Atomically and durably write an object with its declared size.

  • Backend.Open()

    Open an object stream and metadata.

  • Backend.Delete()

    Delete an object and durably record the directory change.

  • Backend.List()

    List one bounded page of objects under a prefix in stable key order.