package qcow

  1. Overview
  2. Docs
type t

A cache of clusters

Create a cache of clusters, given the read/write functions

read t cluster returns the data in cluster

write t cluster data writes data to cluster

val remove : t -> Qcow_types.Cluster.t -> unit

remove t cluster drops any cache associated with cluster

val resize : t -> Qcow_types.Cluster.t -> unit

resize t new_size_clusters drops any cache entries which are beyond the new file size.

module Debug : sig ... end