NServiceBus 传奇
我有一个正在工作的酒吧子样本,我想看看传奇。如何配置 in mem saga 持久性?
I have a working pub sub sample and I want to look at sagas. How can I configure the in mem saga persistence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Lite(默认)配置文件中运行主机将自动使用 InMemory 持久程序。
Running the host in the Lite (default) profile will automatically use the InMemory persister.
右键单击项目文件并单击“属性”,然后在属性页中导航到“调试”选项卡并在“命令行参数”下输入 NServiceBus.Lite。这告诉 NServiceBus 在我们测试时不要在生产模式下运行服务。
Right-click on the project file and click on Properties, then in the property pages, navigate to the Debug tab and enter NServiceBus.Lite under Command line arguments. This tells NServiceBus not to run the service in production mode while we're just testing.