View Source Dagger.CacheSharingMode (dagger v0.15.1)

Sharing mode of the cache volume.

Summary

Functions

Shares the cache volume amongst many build pipelines, but will serialize the writes

Keeps a cache volume for a single build pipeline

Shares the cache volume amongst many build pipelines

Types

t()

@type t() :: :SHARED | :PRIVATE | :LOCKED

Functions

locked()

@spec locked() :: :LOCKED

Shares the cache volume amongst many build pipelines, but will serialize the writes

private()

@spec private() :: :PRIVATE

Keeps a cache volume for a single build pipeline

shared()

@spec shared() :: :SHARED

Shares the cache volume amongst many build pipelines