Closed tippenein closed 6 months ago
We should cache the plot data for a few days. Something like
CREATE TABLE image_cache ( token TEXT PRIMARY KEY, image_data TEXT -- or BYTEA if you prefer to store the binary data date_added timestamp );
this is done natively by flask through the endpoint decoration
We should cache the plot data for a few days. Something like