MSMQ as a job queue -


i trying implement job queue msmq save time on me implementing in sql. after reading around realized msmq might not offer after. please advice me if plan realistic using msmq or recommend alternative ?

i have number of processes picking jobs queue (i might need scale out in future), once job picked processing follows, during time job locked other processes status, if needed job chucked (status changes again) queue further processing, physically job still sits in queue until completed.

msmq doesn't let me keep message in queue while working on it, eg can peek or read. read takes message out of queue , peek doesn't allow changing message (status).

thank you

using msmq datastore bad it's not designed storage @ all. unless queues transactional messages may not written disk.

certainly updating queue items in-situ not supported reasons state.

if don't want full blown relational db use in-memory cache of kind, memcached, or cheap object db raven.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -