Hello Ricardo, On Sun, Sep 02, 2012 at 09:57:49AM +0200, Ricardo F wrote: > > Hello, > I check the number of total sessions in the listen and in the backend, and I > can see how the number is higher in the backend, but I don't understand why. > If the clientes connect to the listen and create, for example, 100 sessions, > I think that the sessions in the backend will be 100 or less, not?, why I my > production server, at this moment, I have 10 sessions in the listen and 50 in > backend?
The reason is that your frontend has HTTP keep-alive enabled, and it is not supported with servers. So for one session on the frontend, you can have multiple requests, each increasing the session count on the backend. Regards, Willy

