Dcc Upload - for how long is data stored by the server

Hi,

I am wondering, for how long is a given upload present in the servers memory when using the dcc.Upload component? Also is there a way to clear any data transferred from the client to the server?

Best, Tobias

Per default, the data are stored in the browser, i.e. not on the server. The only time the data touches the server is in callbacks. Hence it is “cleared” from the server as soon as the callback exits.

2 Likes