You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a quick way to provide a handler to be called on reception of smaller parts of a request body? Like a handler/lambda to be called for each 100Kb or so.
This handler could then save each part received to disk, and thus avoid to have a handler that is called with the received request in its entirety.
The use case is to use restinio to also serve an endpoint that can be provided a large file for purposes like software upgrade.
The text was updated successfully, but these errors were encountered:
Sorry, but no. The current version of RESTinio doesn't support processing of partially loaded incoming requests. Such a functionality is in plans for the next version of RESTinio, but the development of the project is on hold now. We're fixing issues, answer questions, provide some help... But have to resources to add new functionality to RESTinio at the moment.
Is there a quick way to provide a handler to be called on reception of smaller parts of a request body? Like a handler/lambda to be called for each 100Kb or so.
This handler could then save each part received to disk, and thus avoid to have a handler that is called with the received request in its entirety.
The use case is to use restinio to also serve an endpoint that can be provided a large file for purposes like software upgrade.
The text was updated successfully, but these errors were encountered: