Flat File Store Tar Writer
class FlatFileStoreTarWriter(out: TarArchiveOutputStream, prefix: String = "cache/", timestamp: Instant = Instant.EPOCH) : Store
A specialised Store implementation that writes a cache in the FlatFileStore format to a TarArchiveOutputStream.
The cache is not buffered to disk.
This implementation only supports the create and write methods. All other methods throw UnsupportedOperationException.
It is only intended for use by the cache archiving service's web interface.