type Cache struct {
// Value contains a gzipped gob'd serialization of the object// to be cached. It must be []byte to avail ourselves of the// datastore's 1 MB size limit.
Value []byte
}
Cache is a datastore entity type that contains serialized data for dashboards.