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
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.