将单个功能投入生产!
我正在开发一个使用自定义作业调度程序触发的 API。 API 采用.NET dll 的形式。目前它包含 10-15 个方法。大多数方法目前正处于测试阶段。客户希望将单一方法推出到生产中。是的,我的意思是,如果 DLL 中有 10 个方法,则客户端希望将像 FetchOrders(order id) 这样的单个方法推送到生产环境中。
我该如何去做呢?
I am working on an API that is triggered using a custom Job scheduler. The API is in the form of .NET dll. Currently it contains 10-15 methods. Most of the methods are currently in testing phase. The client wants to push out a single method to the production. Yes, I mean if there are 10 methods in a DLL the client wants to push a single method like FetchOrders(order id) into the production.
How can I go about doing that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果该方法经过测试并被接受,则发布该方法。
分支版本(使用 TFS 时),以防在处理完整版本时需要在产品版本上完成工作。
确保其他功能在生产中不可用。
Publish that one method if it's tested and accepted.
Branch the version (when using TFS) in case work needs done on the prod version while working on the full version.
Make sure the other functions aren't available in production.