-
I'm currently trying to migrate from quarkus-resteasy to quarkus-rest and can't find a proper way of sending mutliple files as streams using registered client without loading them in memory. I found that there is a recommended way of using |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 11 replies
-
/cc @cescoffier (rest-client), @geoand (rest-client) |
Beta Was this translation helpful? Give feedback.
-
@kronst what did you code quarkus-resteasy code look like? |
Beta Was this translation helpful? Give feedback.
-
I took a look at what goes on from Quarkus, to Vert.x and down to Netty and it seems that the only fool proof way of making this work is to actually use a file. Everything else is going to end up pilling up in memory |
Beta Was this translation helpful? Give feedback.
I took a look at what goes on from Quarkus, to Vert.x and down to Netty and it seems that the only fool proof way of making this work is to actually use a file. Everything else is going to end up pilling up in memory