tags:

views:

18

answers:

1

I need functionality that will allow to discard objects from session if they are not used in specified amount of time. It is simmilar to Cache timeout functionality.

Is there any session provider (possibly free) or pattern that achives that?

A: 

Why do you need using session? You can use cache instead. For example you can generate cache keys containing user unique identifier, so such entries would be unique for each user.

Andrew Bezzub
Because those are session items not used across application but only across one session. Also Cache cannot be shared between machines (load balancing).
Robert.K