Tuesday, October 22, 2019

Async Programming vs Sync Programming

Sync Programming can have multi threaded way of scaling, but there are lot of instances when some thread from the whole of thread pool may fail to ack or do work. And since each thread have timeouts due to sync nature of it , we could cause lot of timeout exceptions on the client side.

I .  Async  Programming, tells to fire and forget , but internally have multiple retries to have resiliency.

No comments:

Post a Comment