通过对bufflao改造

源代码在线查看: cache.js

软件大小: 2588 K
上传用户: iamguest88
关键词: bufflao
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				var Buffalo.Cache = {
					
				}
				
				Buffalo.CacheElement = Class.create();
				
				Buffalo.CacheElement.prototype = {
				
					initialize:function(name) {
						this.name = name;
						this.createTime = new Date();
						this.lastAccess = new Date();
					}
					
					idleTime : function() {
						return (new Date()) - this.lastAccess;
					}
					
					
				}			

相关资源