浏览模式: 普通 | 列表
12月, 2010 | 1

ASP缓存类

[ 2010-12-31 14:46:21 | 作者: admin ]
缓存类的使用
dim content,myCache
Set myCache = new cls_Cache
myCache.name="sofoisndoffo" '定义缓存名称
if myCache.valid then '如果缓存有效
   content=myCache.value '读取缓存内容
else
   content="测试测试测试" '大量内容,可以是非常耗时大量数据库查询记录集
   myCache.add content,dateadd("n",1000,now) '将内容赋值给缓存,并设置缓存有效期是当前时间+1000分钟
end if
Response.Write(content)
'myCache.makeEmpty()
set myCache=nothing '释放对象


缓存类原代码
...

阅读全文…
1