C# Queue or ServiceBus with no dependencies?

后端 未结 10 485
暗喜
暗喜 2021-01-31 10:54

Is there a product (ideally open source, but not necessary), that would enable a zero dependency deployment? every service bus or queue library I\'ve been able to find has a de

10条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-31 11:17

    In a similar vein to ShuggyCoUk's suggestion, you could rig up a queue (or queues) using the Windows built-in ESENT database (comes already installed with Windows). There is a managed code access library (open source): http://www.codeplex.com/ManagedEsent. If you stick with writing / reading CLOBs or BLOBs, it should work just fine. If you want to be really clever, you can use NServiceBus and write (contribute?) ESENT-flavored subscription storage and transports. There are some forays into using ESENT on Ayende's blog as well (you'll have to poke around his SVN repository for the juicy bits).

提交回复
热议问题