views:

10

answers:

0

I am noticing that the StateServer service only grows in memory usage.

When a user logs out the session is ended with:

Session.Clear()
Session.RemoveAll()
Session.Abandon()

I assumed that StateServer would then release some memory, but it will actually consume a bit more.

In web.config I have the timeout set to 20 minutes. The sessions do time out after 20 minutes of no activity, but StateServer doesn't release any memory when they do.

Is this normal behavior?