In Nodejs, generating signed url for a large list of files(~1000) takes time because it does the job in a single-thread manner. So I'm interested to know is there a way to create signed url for multiple files at once? for example by passing an array of object keys instead of passing one at a time? Or shall I consider generating signed-cookies? thanks