SessionStateProvider may be have a bug
description
In the method public override void ReleaseItemExclusive, the code:
this._client.Store(StoreMode.Set, id, objHolder);
should be replaced as:
this._client.Store(StoreMode.Set, id, objHolder,new TimeSpan(0,_objConfig.Timeout.Minutes,0));
or the session timeout will be wrong.