Azure: offload memory-intensive task synchronously? -
i'm designing asp.net web application hosted in azure. plan resize images user uploads on server side. i've got library this, happens in main web front end vm. i'd offload worker vm. understand pattern doing queue, don't want return user until task has completed because plan display resized image upon completion of processed request. so, how can offload task performed synchronously? (meaning won't return call site until remote task has completed.)
thanks...
-ben
you can similar in webjobs samples here: http://aspnet.codeplex.com/sourcecontrol/latest#samples/azurewebjobs/phluffyshuffy/phluffyshuffyweb/views/shuffle/index.cshtml
we have similar application: process image , display when done. pooling result blob using javascript.
Comments
Post a Comment