Zip Resource Provider Options
data class ZipResourceProviderOptions(val chunkCacheSize: Int = 16000000, val maxChunkSize: Int = 400000, val preferredChunkSize: Int = 100000)
Options for IZipResourceProvider
Properties
Link copied to clipboard
The size of the chunk cache in bytes. A value of less than or equal to 0 will disable caching of chunks.
Link copied to clipboard
ZipResourceProvider tries to fit at least one file in a chunk. If a file is larger than "maxChunkSize" bytes, the file will be requested with multiple chunks.
Link copied to clipboard
ZipResourceProvider reads the zip-archive in chunks. The chunks are aligned to match the one or more compressed files within the archive.