├── Controllers └── HomeController.cs ├── Core ├── Caching │ ├── CacheKeys.cs │ ├── IRedisCacheService.cs │ ├── RedisCacheService.cs │ └── RedisNotAvailableException.cs ├── Config.cs ├── Enums.cs ├── PermissonFilter.cs └── SecurityActionAttribute.cs ├── Entities ├── DbContexts │ └── RedisDBContext.cs ├── DbSecurityAction.cs ├── DbSecurityController.cs ├── DbSecurityUserAction.cs └── DbUser.cs ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── RedisExample.csproj ├── Services ├── IPermissionService.cs └── PermissionService.cs ├── Views ├── Home │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net6.0 │ ├── Humanizer.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── Newtonsoft.Json.dll │ ├── RedisExample.deps.json │ ├── RedisExample.dll │ ├── RedisExample.exe │ ├── RedisExample.pdb │ ├── RedisExample.runtimeconfig.json │ ├── RedisExample.staticwebassets.runtime.json │ ├── ServiceStack.Common.dll │ ├── ServiceStack.Interfaces.dll │ ├── ServiceStack.Redis.dll │ ├── ServiceStack.Text.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Drawing.Common.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Permissions.dll │ ├── System.Windows.Extensions.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── ref │ └── RedisExample.dll │ └── runtimes │ ├── unix │ └── lib │ │ ├── net6.0 │ │ └── System.Drawing.Common.dll │ │ └── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm │ └── native │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-arm64 │ └── native │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-x64 │ └── native │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-x86 │ └── native │ │ └── Microsoft.Data.SqlClient.SNI.dll │ └── win │ └── lib │ ├── net6.0 │ ├── Microsoft.Win32.SystemEvents.dll │ ├── System.Drawing.Common.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ └── System.Windows.Extensions.dll │ ├── netcoreapp3.1 │ └── Microsoft.Data.SqlClient.dll │ └── netstandard2.0 │ └── System.Runtime.Caching.dll ├── obj ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── RedisExample.AssemblyInfo.cs │ │ ├── RedisExample.AssemblyInfoInputs.cache │ │ ├── RedisExample.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── RedisExample.GlobalUsings.g.cs │ │ ├── RedisExample.MvcApplicationPartsAssemblyInfo.cache │ │ ├── RedisExample.RazorAssemblyInfo.cache │ │ ├── RedisExample.RazorAssemblyInfo.cs │ │ ├── RedisExample.assets.cache │ │ ├── RedisExample.csproj.AssemblyReference.cache │ │ ├── RedisExample.csproj.CopyComplete │ │ ├── RedisExample.csproj.CoreCompileInputs.cache │ │ ├── RedisExample.csproj.FileListAbsolute.txt │ │ ├── RedisExample.dll │ │ ├── RedisExample.genruntimeconfig.cache │ │ ├── RedisExample.pdb │ │ ├── apphost.exe │ │ ├── project.razor.json │ │ ├── ref │ │ └── RedisExample.dll │ │ ├── scopedcss │ │ ├── Views │ │ │ └── Shared │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ ├── bundle │ │ │ └── RedisExample.styles.css │ │ └── projectbundle │ │ │ └── RedisExample.bundle.scp.css │ │ ├── staticwebassets.build.json │ │ └── staticwebassets.development.json ├── RedisExample.csproj.EntityFrameworkCore.targets ├── RedisExample.csproj.nuget.dgspec.json ├── RedisExample.csproj.nuget.g.props ├── RedisExample.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache └── staticwebassets.pack.sentinel └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Core/Caching/CacheKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Caching/CacheKeys.cs -------------------------------------------------------------------------------- /Core/Caching/IRedisCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Caching/IRedisCacheService.cs -------------------------------------------------------------------------------- /Core/Caching/RedisCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Caching/RedisCacheService.cs -------------------------------------------------------------------------------- /Core/Caching/RedisNotAvailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Caching/RedisNotAvailableException.cs -------------------------------------------------------------------------------- /Core/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Config.cs -------------------------------------------------------------------------------- /Core/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/Enums.cs -------------------------------------------------------------------------------- /Core/PermissonFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/PermissonFilter.cs -------------------------------------------------------------------------------- /Core/SecurityActionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Core/SecurityActionAttribute.cs -------------------------------------------------------------------------------- /Entities/DbContexts/RedisDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Entities/DbContexts/RedisDBContext.cs -------------------------------------------------------------------------------- /Entities/DbSecurityAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Entities/DbSecurityAction.cs -------------------------------------------------------------------------------- /Entities/DbSecurityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Entities/DbSecurityController.cs -------------------------------------------------------------------------------- /Entities/DbSecurityUserAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Entities/DbSecurityUserAction.cs -------------------------------------------------------------------------------- /Entities/DbUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Entities/DbUser.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /RedisExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/RedisExample.csproj -------------------------------------------------------------------------------- /Services/IPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Services/IPermissionService.cs -------------------------------------------------------------------------------- /Services/PermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Services/PermissionService.cs -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.deps.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.exe -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.pdb -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/RedisExample.staticwebassets.runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/RedisExample.staticwebassets.runtime.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/ServiceStack.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ServiceStack.Redis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/ServiceStack.Redis.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/ServiceStack.Text.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /bin/Debug/net6.0/ref/RedisExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/ref/RedisExample.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6b1a63cc99d4c320f93cb10b48c74e54cabab691 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.GlobalUsings.g.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 38fa3dc79e691970bea5dc3b5b001b6948c7d2c5 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 8c12839d9eb23c698ebf5ef7e47d0654809b088a 2 | -------------------------------------------------------------------------------- /obj/Debug/net6.0/RedisExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/RedisExample.pdb -------------------------------------------------------------------------------- /obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /obj/Debug/net6.0/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/project.razor.json -------------------------------------------------------------------------------- /obj/Debug/net6.0/ref/RedisExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/ref/RedisExample.dll -------------------------------------------------------------------------------- /obj/Debug/net6.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css -------------------------------------------------------------------------------- /obj/Debug/net6.0/scopedcss/bundle/RedisExample.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/scopedcss/bundle/RedisExample.styles.css -------------------------------------------------------------------------------- /obj/Debug/net6.0/scopedcss/projectbundle/RedisExample.bundle.scp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/scopedcss/projectbundle/RedisExample.bundle.scp.css -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /obj/Debug/net6.0/staticwebassets.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/Debug/net6.0/staticwebassets.development.json -------------------------------------------------------------------------------- /obj/RedisExample.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/RedisExample.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /obj/RedisExample.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/RedisExample.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/RedisExample.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/RedisExample.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/RedisExample.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/RedisExample.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/project.nuget.cache -------------------------------------------------------------------------------- /obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/obj/staticwebassets.pack.sentinel -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/js/site.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borakasmer/RedisPerformance/HEAD/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------