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
This will generate responsive images ( extra 9 images per image ).
Now this takes roughly 10-20 seconds for every image to generate on my basic server.
Now lets say an user is uploading 100 images to the gallery. This means the webrequest would take 30min+ to complete. Because for every image it uploads, it is instantly creating the responsive images as well, thus adding a massive delay.
Is there a way to first upload all 100 original images ( which only takes less then a minute ) and then add a Job or background worker to generate all the responsive images in the background.
That way the user can close his browser after uploading the original images, which will upload very fast and the responsve images will keep generating.
I have no idea what the best way is to do this or to achieve this.
Any of you guys have implemented something like this or know how to do ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi guys.
I'm working on a project where users can upload images to a gallery.
I currently use this on my model.
This will generate responsive images ( extra 9 images per image ).
Now this takes roughly 10-20 seconds for every image to generate on my basic server.
Now lets say an user is uploading 100 images to the gallery. This means the webrequest would take 30min+ to complete. Because for every image it uploads, it is instantly creating the responsive images as well, thus adding a massive delay.
Is there a way to first upload all 100 original images ( which only takes less then a minute ) and then add a Job or background worker to generate all the responsive images in the background.
That way the user can close his browser after uploading the original images, which will upload very fast and the responsve images will keep generating.
I have no idea what the best way is to do this or to achieve this.
Any of you guys have implemented something like this or know how to do ?
Beta Was this translation helpful? Give feedback.
All reactions