├── .NuGet └── NuGet.Config ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── License.txt ├── Microsoft.CacheProviders.sln ├── README.md ├── SECURITY.md ├── docs ├── configuration.md ├── redis_output_cache_middleware.md ├── release_notes.md ├── v2.0.0_breaking_change.md └── v5.0.0 Breaking Change.md ├── redis-server.exe ├── src ├── OutputCacheProvider │ ├── IOutputCacheConnection.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisOutputCacheConnectionWrapper.cs │ ├── RedisOutputCacheProvider.cs │ ├── RedisOutputCacheProvider.csproj │ └── RedisProviderResource.Designer.cs ├── RedisOutputCachingMiddleware │ ├── RedisOutputCachingMiddleware.cs │ └── RedisOutputCachingMiddleware.csproj ├── RedisSessionStateProvider │ ├── ICacheConnection.cs │ ├── KeyGenerator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisConnectionWrapper.cs │ ├── RedisProviderResource.Designer.cs │ ├── RedisProviderResource.resx │ ├── RedisSessionStateProvider.cs │ └── RedisSessionStateProvider.csproj └── Shared │ ├── IRedisClientConnection.cs │ ├── LogUtility.cs │ ├── ProviderConfiguration.cs │ ├── RedisSharedConnection.cs │ └── StackExchangeClientConnection.cs └── test ├── OutputCacheProviderFunctionalTests ├── RedisOutputCacheFunctionalTests.cs └── RedisOutputCacheProvider.FunctionalTests.csproj ├── OutputCacheProviderUnitTests ├── RedisOutputCacheProvider.UnitTests.csproj ├── RedisOutputCacheUnitTests.cs └── app.config ├── RedisOutputCachingMiddleWareFunctionalTests ├── RedisOutputCachingMiddleWare.FunctionalTests.csproj └── RedisOutputCachingMiddleWareFunctionalTests.cs ├── RedisOutputCachingMiddlewareUnitTests ├── RedisOutputCachingMiddleware.UnitTests.csproj └── RedisOutputCachingMiddlewareUnitTests.cs ├── RedisSessionStateProviderFunctionalTests ├── RedisConnectionWrapperFunctionalTests.cs ├── RedisSessionStateProvider.FunctionalTests.csproj ├── RedisSessionStateProviderFunctionalTests.cs └── StackExchangeClientConnectionFunctionalTests.cs ├── RedisSessionStateProviderUnitTest ├── ProviderConfigurationTests.cs ├── RedisConnectionWrapperTests.cs ├── RedisSessionStateProvider.UnitTest.csproj ├── RedisSessionStateProviderTests.cs └── app.config └── Shared ├── RedisServer.cs └── Utility.cs /.NuGet/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/.NuGet/NuGet.Config -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/License.txt -------------------------------------------------------------------------------- /Microsoft.CacheProviders.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/Microsoft.CacheProviders.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/redis_output_cache_middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/docs/redis_output_cache_middleware.md -------------------------------------------------------------------------------- /docs/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/docs/release_notes.md -------------------------------------------------------------------------------- /docs/v2.0.0_breaking_change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/docs/v2.0.0_breaking_change.md -------------------------------------------------------------------------------- /docs/v5.0.0 Breaking Change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/docs/v5.0.0 Breaking Change.md -------------------------------------------------------------------------------- /redis-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/redis-server.exe -------------------------------------------------------------------------------- /src/OutputCacheProvider/IOutputCacheConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/IOutputCacheConnection.cs -------------------------------------------------------------------------------- /src/OutputCacheProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/OutputCacheProvider/RedisOutputCacheConnectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/RedisOutputCacheConnectionWrapper.cs -------------------------------------------------------------------------------- /src/OutputCacheProvider/RedisOutputCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/RedisOutputCacheProvider.cs -------------------------------------------------------------------------------- /src/OutputCacheProvider/RedisOutputCacheProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/RedisOutputCacheProvider.csproj -------------------------------------------------------------------------------- /src/OutputCacheProvider/RedisProviderResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/OutputCacheProvider/RedisProviderResource.Designer.cs -------------------------------------------------------------------------------- /src/RedisOutputCachingMiddleware/RedisOutputCachingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisOutputCachingMiddleware/RedisOutputCachingMiddleware.cs -------------------------------------------------------------------------------- /src/RedisOutputCachingMiddleware/RedisOutputCachingMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisOutputCachingMiddleware/RedisOutputCachingMiddleware.csproj -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/ICacheConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/ICacheConnection.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/KeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/KeyGenerator.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/RedisConnectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/RedisConnectionWrapper.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/RedisProviderResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/RedisProviderResource.Designer.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/RedisProviderResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/RedisProviderResource.resx -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/RedisSessionStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/RedisSessionStateProvider.cs -------------------------------------------------------------------------------- /src/RedisSessionStateProvider/RedisSessionStateProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/RedisSessionStateProvider/RedisSessionStateProvider.csproj -------------------------------------------------------------------------------- /src/Shared/IRedisClientConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/Shared/IRedisClientConnection.cs -------------------------------------------------------------------------------- /src/Shared/LogUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/Shared/LogUtility.cs -------------------------------------------------------------------------------- /src/Shared/ProviderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/Shared/ProviderConfiguration.cs -------------------------------------------------------------------------------- /src/Shared/RedisSharedConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/Shared/RedisSharedConnection.cs -------------------------------------------------------------------------------- /src/Shared/StackExchangeClientConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/src/Shared/StackExchangeClientConnection.cs -------------------------------------------------------------------------------- /test/OutputCacheProviderFunctionalTests/RedisOutputCacheFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/OutputCacheProviderFunctionalTests/RedisOutputCacheFunctionalTests.cs -------------------------------------------------------------------------------- /test/OutputCacheProviderFunctionalTests/RedisOutputCacheProvider.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/OutputCacheProviderFunctionalTests/RedisOutputCacheProvider.FunctionalTests.csproj -------------------------------------------------------------------------------- /test/OutputCacheProviderUnitTests/RedisOutputCacheProvider.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/OutputCacheProviderUnitTests/RedisOutputCacheProvider.UnitTests.csproj -------------------------------------------------------------------------------- /test/OutputCacheProviderUnitTests/RedisOutputCacheUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/OutputCacheProviderUnitTests/RedisOutputCacheUnitTests.cs -------------------------------------------------------------------------------- /test/OutputCacheProviderUnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/OutputCacheProviderUnitTests/app.config -------------------------------------------------------------------------------- /test/RedisOutputCachingMiddleWareFunctionalTests/RedisOutputCachingMiddleWare.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisOutputCachingMiddleWareFunctionalTests/RedisOutputCachingMiddleWare.FunctionalTests.csproj -------------------------------------------------------------------------------- /test/RedisOutputCachingMiddleWareFunctionalTests/RedisOutputCachingMiddleWareFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisOutputCachingMiddleWareFunctionalTests/RedisOutputCachingMiddleWareFunctionalTests.cs -------------------------------------------------------------------------------- /test/RedisOutputCachingMiddlewareUnitTests/RedisOutputCachingMiddleware.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisOutputCachingMiddlewareUnitTests/RedisOutputCachingMiddleware.UnitTests.csproj -------------------------------------------------------------------------------- /test/RedisOutputCachingMiddlewareUnitTests/RedisOutputCachingMiddlewareUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisOutputCachingMiddlewareUnitTests/RedisOutputCachingMiddlewareUnitTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderFunctionalTests/RedisConnectionWrapperFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderFunctionalTests/RedisConnectionWrapperFunctionalTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderFunctionalTests/RedisSessionStateProvider.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderFunctionalTests/RedisSessionStateProvider.FunctionalTests.csproj -------------------------------------------------------------------------------- /test/RedisSessionStateProviderFunctionalTests/RedisSessionStateProviderFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderFunctionalTests/RedisSessionStateProviderFunctionalTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderFunctionalTests/StackExchangeClientConnectionFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderFunctionalTests/StackExchangeClientConnectionFunctionalTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderUnitTest/ProviderConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderUnitTest/ProviderConfigurationTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderUnitTest/RedisConnectionWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderUnitTest/RedisConnectionWrapperTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderUnitTest/RedisSessionStateProvider.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderUnitTest/RedisSessionStateProvider.UnitTest.csproj -------------------------------------------------------------------------------- /test/RedisSessionStateProviderUnitTest/RedisSessionStateProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderUnitTest/RedisSessionStateProviderTests.cs -------------------------------------------------------------------------------- /test/RedisSessionStateProviderUnitTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/RedisSessionStateProviderUnitTest/app.config -------------------------------------------------------------------------------- /test/Shared/RedisServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/Shared/RedisServer.cs -------------------------------------------------------------------------------- /test/Shared/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aspnet-redis-providers/HEAD/test/Shared/Utility.cs --------------------------------------------------------------------------------