temp file for workers

hi , is it possible to create temp files using workers? there are multipart upload cases where temp file are needed. say upload some image or video before doing other processing.
2 Replies
Hello, I’m Allie!
Not within a Worker. You could pipe an upload into R2 and KV for later use? Or you can cache it in memory, but if it is larger than 128 mb, it won’t fit Actually, that would only work if it is over a single request
admin_way
admin_way15mo ago
makes sense. i will try caching it in memory. thx a lot