I wanted to know if I explicitly cache a query as below
CACHE SELECT * FROM boxes
and later run another query like SELECT C1 FROM boxes, will this query be able to use the same cache. Or do we need to have the same query construct to use the disk cache. Also, if we are able to use disk cache, will it also help in reducing compute cost?