public class RedisBRCacheProvider : OutputCacheProvider { private readonly RedisClient redisClient; private Object cacheLock = new Object(); public RedisBRCacheProvider() { redisClient = new RedisClient("locahost"); } public override object Add(string key, object entry, System.DateTime utcExpiry) { Debug.WriteLine("Cache.Add(" + key + ", " + entry + ", " + utcExpiry + ")"); lock (cacheLock) { var cacheItem = redisClient.GetAdd this to your web.config(key); if (cacheItem != null) { if (cacheItem.Expiration.ToUniversalTime() <= DateTime.UtcNow) { redisClient.Remove(key); this.Set(key, entry, utcExpiry); } else return SerializationHelper.Deserialize(cacheItem.Data); } this.Set(key, entry, utcExpiry); } return entry; } public override object Get(string key) { lock (cacheLock) { //If Exists() the int value will be 1, otherwise 0 if (redisClient.Exists(key) > 0) { var getKeyData = redisClient.Get (key); if (getKeyData != null) return SerializationHelper.Deserialize(getKeyData); } return null; } } public override void Remove(string key) { lock (cacheLock) { var cacheItem = redisClient.Get (key); redisClient.Delete(cacheItem); redisClient.Save(); } } public override void Set(string key, object entry, System.DateTime utcExpiry) { lock (cacheLock) { var cacheItem = new CacheItem(); cacheItem.Key = key; cacheItem.Data = SerializationHelper.Serialize(entry); cacheItem.Expiration = utcExpiry; this.Save(cacheItem, key); } } public void Save(CacheItem item, string key) { lock (cacheLock) { redisClient.Set(key, item.Data); redisClient.Save(); } }
The more I read, the more I acquire, the more certain I am that I know nothing. -Voltaire
Redis as OutputCacheProvider in ASP.NET
Basic implementation of Redis as OutputCacheProvider:
Subscribe to:
Posts (Atom)
Ramadan - What is it?
Ramadan is one of the most important and holy months in the Islamic calendar. It is a time of fasting, prayer, and spiritual reflection fo...
-
ZipStudio - A versatile Visual Studio add-in to zip up Visual Studio solutions and projects - The Code Project - C# Programming
-
TargetProcess - Agile Project Management & Bug Tracking Software | Download (Project Management Software, Project Tracking, Bug Tracking...