OM The Eternity
OM The Eternity

Reputation: 16204

How to manage session on a load balancing architecture?

I Was facing a problem in my load balancing architecture. Please suggest something on How to manage session on a load balancing architecture?

Upvotes: 0

Views: 758

Answers (1)

Jatin Dhoot
Jatin Dhoot

Reputation: 4364

in PHP you have something called as session_set_save_handler.

IN this method you can define your customized function for session handling e.g. you can handle sessions with database.

Also load balancers provide concept of sticky-sessions in which sessiosn are save on load balancers itself

Upvotes: 1

Related Questions