Skip to content

Load balancer in GO listens to requests and route the traffic to the multiple servers

Notifications You must be signed in to change notification settings

paerarason/LoadBalancer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LoadBalancer

  • There are different types of load balancing, static and dynamic.
  • A typical static method is Round Robin, which distributes requests evenly.
  • A typical dynamic method is Least Connection, which distributes requests to the server with the least number of unprocessed requests.

Round Robin

  • RoundRobin Method to implement the algorithm

Least Connection

  • LeastConnection Method to implement the algorithm

About

Load balancer in GO listens to requests and route the traffic to the multiple servers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages