1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00

Added redis caching libraries and implemented for user by id caching.

This commit is contained in:
Kyle Spearrin
2016-06-17 17:42:22 -04:00
parent df94150848
commit 1ff49cd5b3
9 changed files with 109 additions and 34 deletions

7
src/Core/Constants.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace Bit.Core
{
public static class Constants
{
public const string UserIdCacheKey = "User:Id_{0}";
}
}