File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/IntelliTect.Coalesce.AuditLogging/Internal Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11# 6.0.4
2+ - AuditLogging: Stored procedure cache was not being correctly persisted to avoid redundant ` SELECT OBJECT_DEFINITION ` queries.
23
34# 6.0.3
45- ` c-select ` now correctly respects the ` filter ` prop for enum collections.
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ @MergeWindowSeconds INT
312312 /// Cache for stored procedure names. Size is limited in case there is an application whose Model
313313 /// is not a singleton, e.g. dynamic model configuration for schema-based tenancy.
314314 /// </summary>
315- private readonly MemoryCache _storedProcedureCache = new MemoryCache ( new MemoryCacheOptions ( ) { SizeLimit = 4_000 } ) ;
315+ private static readonly MemoryCache _storedProcedureCache = new MemoryCache ( new MemoryCacheOptions ( ) { SizeLimit = 4_000 } ) ;
316316
317317 /// <summary>
318318 /// Ensures the stored procedure exists and returns its name.
You can’t perform that action at this time.
0 commit comments