Multer supports memory storage and disk storage My objective is to upload file to s3 through my node server.
But Multer has this warning message in the documentation.
Uploading very large files, or relatively small files in large numbers very quickly, can cause your application to run out of memory when memory storage is used.
My application will be used my many people and there will be simultaneous multiple file uploads will be happening.
Should i use memory storage or disk storage to temporarily store buffer and push to s3 from there?