- Microservices with Azure
- Namit Tanasseri Rahul Rai
- 173字
- 2021-07-02 22:18:20
Technology-agnostic
In today's world, when the technology is changing fast, eliminating long-term commitment to a single technology stack is a significant advantage. Every Microservice can be built on a separate technology stack and can be redesigned, replaced, or upgraded independently as they execute in isolation. This means that every Microservice can be built using a different programming language and use a different type of data store which best suits the solution. This decreases the dependency concerns compared to the monolithic designs, and makes replacing services much easier.
A good example where this ability of a Microservice maximizes its effect is a scenario where different data stores can be used by different services in alignment with the business scenario they address. A logging service can use a slower and cheaper data store, whereas a real-time service can use a faster and more performant data store. As the consuming services are abstracted from the implementation of the service, they are not concerned about the compatibility with the technology used to access the data.
- 大學計算機應用基礎實踐教程
- 摩登創客:與智能手機和平板電腦共舞
- Java應用開發與實踐
- Drupal 8 Configuration Management
- C語言程序設計同步訓練與上機指導(第三版)
- INSTANT Passbook App Development for iOS How-to
- Unreal Engine 4 Shaders and Effects Cookbook
- NGINX Cookbook
- Scala Reactive Programming
- Unity&VR游戲美術設計實戰
- Python大學實用教程
- Building Serverless Web Applications
- Instant jQuery Boilerplate for Plugins
- 網絡數據采集技術:Java網絡爬蟲實戰
- C指針原理揭秘:基于底層實現機制