@tanujDE3180 Concurreny = Dealing with multiple tasks at once by switching between them.
Parallelism = Doing multiple tasks at the same time literally, using multiple cores/CPUs.
Framework vs Library π―
Framework:
Framework controls the flow of the application and provides a complete structure.
π βIt calls your codeβ
Library
Library is a collection of reusable functions that we call when needed.
π βYou call its codeβ
#Framework#Library
Most teams donβt think about API versioning until something breaks in production.
A small change in an API and suddenly other services start failing.
Let me explain this in a very simple way. (1/8)
Most teams donβt think about API versioning until something breaks in production.
A small change in an API and suddenly other services start failing.
Let me explain this in a very simple way. (1/8)
Simple rules I always follow
i) Never break working APIs
ii) Always give time before removing old versions
iii) Communicate changes clearly
iv) Avoid creating too many versions
v) Treat APIs as contracts
#Versions
(7/8)