buildahcker
    Preparing search index...

    Interface ContainerCache

    interface ContainerCache {
        getEntry(
            imageId: string,
            operationCacheKey: string,
        ): Promise<undefined | string>;
        setEntry(
            imageId: string,
            operationCacheKey: string,
            resultImageId: string,
        ): Promise<void>;
    }

    Implemented by

    Index

    Methods

    • Parameters

      • imageId: string
      • operationCacheKey: string

      Returns Promise<undefined | string>

    • Parameters

      • imageId: string
      • operationCacheKey: string
      • resultImageId: string

      Returns Promise<void>