- Building Microservices with .NET Core 2.0(Second Edition)
- Gaurav Aroraa
- 331字
- 2021-07-02 20:12:55
Modularity
In respect to our monolithic application, where we may have an Order module, a change in the module Orders affects the module Stock and so on. It is the absence of modularity that has resulted in such a condition.
This also means that we can't reuse the functionality of a module within another module. The code is not decomposed into structured pieces that could be reused to save time and effort. There is no segregation within the code modules, and hence, no common code is available.
Business is growing and its customers are growing by leaps and bounds. New or existing customers from different regions have different preferences when it comes to the use of the application. Some like to visit the website, but others prefer to use mobile apps. The system is structured in a way that we can't share the components across a website and a mobile app. This makes introducing a mobile/device app for the business a challenging task. Business is affected as in such scenarios the company loses out on customers who prefer mobile apps.
The difficulty in replacing the component's application is using third-party libraries, an external system such as payment gateways, and an external order-tracking system. It is a tedious job to replace the old components in the currently styled monolithic architectural application. For example, if we consider upgrading the library of our module that is consuming an external order-tracking system, then the whole change would prove to be very difficult. Also, it would be an intricate task to replace our payment gateway with another one.
In any of the preceding scenarios, whenever we upgraded the components, we upgraded everything within the application, which called for a complete testing of the system and required a lot of downtime. Apart from this, the upgrade would possibly result in the form of production bugs, which would require you to repeat the whole cycle of development, testing, and deployment.
- Mastering JavaScript Functional Programming
- 小程序實戰視頻課:微信小程序開發全案精講
- CMDB分步構建指南
- R語言編程指南
- Swift 3 New Features
- 自然語言處理Python進階
- Learning Concurrent Programming in Scala
- HTML5開發精要與實例詳解
- Python機器學習算法與應用
- Practical Microservices
- C編程技巧:117個問題解決方案示例
- HTML5移動前端開發基礎與實戰(微課版)
- Node.js實戰:分布式系統中的后端服務開發
- 從零開始構建深度前饋神經網絡:Python+TensorFlow 2.x
- Learning iOS Penetration Testing