fn addFile(self: *Manifest, file_path: []const u8, max_file_size: ?usize) !usize

Add a file as a dependency of process being cached. When hit is called, the file’s contents will be checked to ensure that it matches the contents from previous times.

Max file size will be used to determine the amount of space the file contents are allowed to take up in memory. If max_file_size is null, then the contents will not be loaded into memory.

Returns the index of the entry in the files array list. You can use it to access the contents of the file after calling hit() like so:

var file_contents = cache_hash.files.items[file_index].contents.?;

Parameters

self: *Manifest,
file_path: []const u8,
max_file_size: ?usize,