user50819
user50819

Reputation: 333

How does MSMQ manage messages?

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.

Upvotes: 4

Views: 3635

Answers (2)

flalar
flalar

Reputation: 1221

it stores them as files on the disk.

If you wanna manage them use the System.Messaging API

Upvotes: 3

Dries Van Hansewijck
Dries Van Hansewijck

Reputation: 1454

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

Upvotes: 8

Related Questions