type VectorCache = Cache<(ConcreteDataType, Value), VectorRef>;
Maps Value to a vector that holds this value repeatedly.
e.g. "hello" => ["hello", "hello", "hello"]
"hello" => ["hello", "hello", "hello"]
struct VectorCache { /* private fields */ }