MSMQ or Service Broker or bulk insert for FIFO message processing?

自作多情 提交于 2019-12-10 20:46:05

问题


We have a scenario where we need to use update/insert queries to the database against incoming real time events. We can go for either of the options presented below 1- MSMQ 2- SQL Service Broker 3- Custom built caching mechanism (using file cache, Bulk Inserts, triggers to convert inserts into updates if rows already exist etc)

We are not using an transactions, what should be the best option?

If we decide to use MSMQ, there is no guarantee about the ordering of the messages, we want it FIFO. So far best approach seems to be our own implementation but if MSMQ or Service broker can provide FIFO message processing it would be real nice.

来源:https://stackoverflow.com/questions/1931957/msmq-or-service-broker-or-bulk-insert-for-fifo-message-processing

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!