
Icon | Member | Description |
---|---|---|
![]() ![]() | DeleteExpiredSessions(AmazonDynamoDB) |
A utility method for cleaning up expired sessions that IIS failed to delete. The method performs a scan on the ASP.NET_SessionState table
with a condition that the expiration date is in the past and calls delete on all the keys returned. Scans can be costly on performance
so use this method sparingly like a nightly or weekly clean job.
|
![]() ![]() | DeleteExpiredSessions(AmazonDynamoDB, String) |
A utility method for cleaning up expired sessions that IIS failed to delete. The method performs a scan on the table
with a condition that the expiration date is in the past and calls delete on all the keys returned. Scans can be costly on performance
so use this method sparingly like a nightly or weekly clean job.
|