mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 02:52:50 -05:00
[PM-5518] Sql-backed IDistributedCache (#3791)
* Sql-backed IDistributedCache * sqlserver cache table * remove unused using * setup EF entity * cache indexes * add back cipher * revert SetupEntityFramework change * ef cache * EntityFrameworkCache * IServiceScopeFactory for db context * implement EntityFrameworkCache * move to _serviceScopeFactory * move to config file * ef migrations * fixes * datetime and error codes * revert migrations * migrations * format * static and namespace fix * use time provider * Move SQL migration and remove EF one for the moment * Add clean migration of just the new table * Formatting * Test Custom `IDistributedCache` Implementation * Add Back Logging * Remove Double Logging * Skip Test When Not EntityFrameworkCache * Format --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com> Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com>
This commit is contained in:
14
src/Sql/dbo/Tables/Cache.sql
Normal file
14
src/Sql/dbo/Tables/Cache.sql
Normal file
@ -0,0 +1,14 @@
|
||||
CREATE TABLE [dbo].[Cache]
|
||||
(
|
||||
[Id] NVARCHAR (449) NOT NULL,
|
||||
[Value] VARBINARY (MAX) NOT NULL,
|
||||
[ExpiresAtTime] DATETIMEOFFSET (7) NOT NULL,
|
||||
[SlidingExpirationInSeconds] BIGINT NULL,
|
||||
[AbsoluteExpiration] DATETIMEOFFSET (7) NULL,
|
||||
CONSTRAINT [PK_Cache] PRIMARY KEY CLUSTERED ([Id] ASC)
|
||||
);
|
||||
GO
|
||||
|
||||
CREATE NONCLUSTERED INDEX [IX_Cache_ExpiresAtTime]
|
||||
ON [dbo].[Cache]([ExpiresAtTime] ASC);
|
||||
GO
|
Reference in New Issue
Block a user