Horizontal scaling of JSF 2.0 application

前端 未结 3 1308
被撕碎了的回忆
被撕碎了的回忆 2021-02-09 02:03

Given that JavaServer Faces is inherently stateful on the server side, what methods are recommended for horizontally scaling a JSF 2.0 application?

If an application run

3条回答
  •  滥情空心
    2021-02-09 02:20

    What about session replication with "buddy" semantics?

    With one buddy total memory is halved (every server needs to hold the session data of two servers), which is a lot better than having to hold data of each and every server out there.

    Buddy replication also reduces bandwidth overhead.

提交回复
热议问题