to MSMQ or not to MSMQ? (or SQL Table as the Queue)

后端 未结 2 500
闹比i
闹比i 2021-02-04 10:59

I\'ve got a distributed system where there will be 1 SQL Server, 1-n processing servers, and 1-n data suppliers (hardware devices across the network). The data being supplied w

2条回答
  •  迷失自我
    2021-02-04 11:22

    Out of the two options, MSMQ is actually the more simplistic. If you need the ability to re-prioritize work, or have processing agents only pick certain types of queued jobs, then you cant use MSMQ. If you dont need any of those bells and whistles, then MSMQ is cake to use with .NET.

提交回复
热议问题