c# - How To Queue Work To Be Done By The Server ASP.NET -
we have csv uploader users can upload csv file filled address, city, state, zipcode. csv files can hundreds, thousands, 10's of thousands of rows.
we need geocode rows; no problem, using google maps restful web service, don't want make user wait while geocode every row (it can take time). basically, want upload complete, , magically, pass geocode job off server, , allow user continue navigating web app, while geocodes happen in background.
i think, system, requires queue or job based software; maybe zeromq or rabbitmq? have no experience this, baby feeding amazing. using asp.net c#.
your idea use queuing sound. wcf msmq endpoints alternative third-party queuing technologies if you're developing windows boxes.
Comments
Post a Comment