wasmer-cache
The wasmer-cache
crate allows to cache WebAssembly modules (of kind
wasmer::Module
) in your system, so that next uses of the module does
imply a compilation time.
Usage
The Cache
trait represents a generic cache for storing and loading
compiled WebAssembly modules. The FileSystemCache
type implements
Cache
to store cache on the file system.
use ;
use ;