ASP.NET MVC3 web and background processes

Dioncathipina

New Member
I have a web project written in ASP.NET MVC3. Part of my web application is used for some image saving and it runs pretty slow. So after trying to save 100 images (some other work is done with them too) it goes slowly and the user has to wait a lot in the browser.I was thinking about desiging a background service (process) which I would send some data to and it will run in the background not slowing the use of the website. To be concrete, I need a service which works with a single queue of strings. Web application can send a new string in the queue anytime, and the service has to do some work with the strings in the queue.I have no idea where to start or what to use. Any suggestions? :)
 
Top