设置 Cache 的过期时间

Cache.Insert("DSN", connectionString, null, DateTime.Now.AddMinutes(2), TimeSpan.Zero);

下面的示例展示如何向缓存中插入具有可调整过期的项
Cache.Insert("DSN", connectionString, null, DateTime.MaxValue, TimeSpan.FromSeconds(10));

你可能感兴趣的:(cache)