最简单的Cache

简介:
using System;
using System.Collections.Generic;

namespace DomainBase
{
   
public class ObjectCache
    {
       
// Dictionary<K,T> 会自动维护一个空链表来保存不用的单元。
       
// 这里,使用被缓存对象的“弱引用”,允许这些对象被垃圾回收。

       
private Dictionary < string , WeakReference > Buffer = new Dictionary < string , WeakReference > ();

       
public object this [ string key]
        {
           
get
            {
                WeakReference ret;
               
if (Buffer.TryGetValue(key, out ret) && ret.IsAlive)
                   
return ret.Target;
               
else
                   
return null ;
            }
           
set
            {
                WeakReference ret;
               
if (Buffer.TryGetValue(key, out ret))
                    ret.Target
= value;
               
else
                    Buffer.Add(key,
new WeakReference(value));
            }
        }

       
public void Remove( string key)
        {
            Buffer.Remove(key);
        }
    }
}



这就是最简单的Cache。例如:

public Class User
{
    static ObjectCache Buffer=new ObjectCache();

    public static GetUser(string id)
    {
      User ret=Buffer[id];
      if(ret==null)
      {
            ret=读取数据库产生User对象(id);
            Buffer[id]=ret;
      }
      return ret;
    }
版权说明

  如果标题未标有<转载、转>等字则属于作者原创,欢迎转载,其版权归作者和博客园共有。
  作      者:温景良
  文章出处:http://wenjl520.cnblogs.com/  或  http://www.cnblogs.com/

分类: C#
0
0
« 上一篇: GIS英文词汇翻译
» 下一篇: SQL和VS的安装顺序
posted @ 2009-03-09 22:20 温景良(Jason) Views( 209) Comments( 2) Edit 收藏

  
#1楼 2009-03-17 22:52 | Todd Wei  
不错!

  
#2楼 2009-03-19 14:49 | Todd Wei  
Buffer的大小需要控制,否则可能不断增长,导致泄漏。特别是,当value已经被回收,应该把该项从Buffer清除掉。

相关文章
|
缓存
cache
cache
104 0
|
内存技术
cache基础
cache
127 0
|
存储 SQL 缓存
|
缓存 NoSQL Redis
|
PHP 缓存
|
Java API Memcache
|
缓存 JavaScript 前端开发
|
缓存 数据库