C# Queue or ServiceBus with no dependencies?(没有依赖项的 C# 队列或 ServiceBus?)
问题描述
是否有可以实现零依赖部署的产品(理想情况下是开源的,但不是必需的)?我能够找到的每个服务总线或队列库都依赖于其中一个队列应用程序(如 msmq)或数据库.我想要一个非常轻量级的解决方案,我只需添加对我的应用程序的引用,构建它,并使用尽可能少的配置进行部署.
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 dependency on one of the queue apps (like msmq), or a database. I would like a very lightweight solution that I can just add a reference to my application, build it, and deploy it with as little configuration as possible.
在理想情况下,队列/服务总线将在 IIS 上运行,并允许 Web 和富客户端与其通信.
In an ideal world, the queue/service bus would run on IIS, and allow web and rich clients to talk to it.
这样的工具非常适合在本地开发机器上对大型分布式系统进行快速原型设计.
Such a tool would be ideal for fast prototyping of large distributed systems on a local development machine.
推荐答案
Ayende 的 Rhino Queues 正是你想要的,这是介绍它的博文:
Rhino Queues from Ayende is exactly what you are looking for, this is the blog post introducing it:
http://ayende.com/Blog/archive/2008/08/01/Rhino-Queues.aspx
我认为从那时起,这篇文章中提到的所有限制都已修复.
I think that all of the limitations mentioned in this post have been fixed since then.
从博文来看,什么是 rhino queues:
From the blog post, what rhino queues is:
- XCopyable、零管理、嵌入式、异步排队服务
- 面对网络中断时表现出色
- System.Transactions 支持
- 快速
- 通过 HTTP 工作
这篇关于没有依赖项的 C# 队列或 ServiceBus?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:没有依赖项的 C# 队列或 ServiceBus?
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01