RedisSessionProvider
RedisSessionProvider copied to clipboard
Provides a drop-in class library that makes ASP.NET's System.Web Session object store its contents in a Redis server or servers.
Has this been tested with azure? Is it better than this one https://github.com/Azure/aspnet-redis-providers
Hi, our company projects are still stuck with .Net 4.0 version but i still want to use your solution, it will be useful to know what needs to be changed...
Session keys should be case-INsensitive to match default ASP.NET behavior, or at least configurable
When switching from StateServer to RedisSessionProvider, I found that you're handling session keys case-sensitively, because you're using the default ConcurrentDictionary IStringEquality behavior. MSDN docs don't specify, but at least based...
Thanks for a great implementation of a Redis Session provider! I found a bug when Trace is enabled (have it at the application level). In web.config <system.web> <trace enabled="true" requestLimit="90"...
It would be great to have a possibility to pass custom JsonSerializerSettings. Sometimes it requires to modify default reference loop handling (or preserve references handling) for serialization(deserialization). For now, there...
Hello, I want to use a redis setup that consists of a master and some slaves, also I want to configure in my infrastructure redis sentinel, so HA can be...
Make it in another class library so as to keep the package separate in NuGet
JSON.NET supports ADO.NET serialization, so there's no reason to fall back to the xml serializer.