问题
It seems that MSMQ doesn't use any Database management system to manage messages.
How does MSMQ manage messages?
Does it store the messages in flat file?
I'm trying to implement a messages management system.
回答1:
MSMQ uses flat files located in %windir%\system32\msmq.
If you want to implement your own queueing, I suggest you take a look at Ayende's blog post on queueing
回答2:
it stores them as files on the disk.
If you wanna manage them use the System.Messaging API
来源:https://stackoverflow.com/questions/802661/how-does-msmq-manage-messages