InterviewSolution
Saved Bookmarks
| 1. |
What are microservices and why would someone want to look at implementing it. |
|
Answer» MICROSERVICES is an architectural style which structures and APPLICATION as a collection of loosely coupled, independently maintainable, testable and deployable services which are organized around business capabilities. If you have a business focus and you want to SOLVE a use case or a problem EFFICIENTLY without the boundaries of technology, want to scale an independent service infinitely, highly available stateless services which are easy to maintainable and managed as well as independently testable then we would go ahead and IMPLEMENT Microservices architecture. |
|