⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cacheobject.java

📁 Jive是基于JSP/JAVA技术构架的一个大型BBS论坛系统,这是Jive论坛2.6版本的源程序
💻 JAVA
字号:
/** * $RCSfile: CacheObject.java,v $ * $Revision: 1.4 $ * $Date: 2002/05/10 21:53:00 $ * * Copyright (C) 1999-2001 CoolServlets, Inc. All rights reserved. * * This software is the proprietary information of CoolServlets, Inc. * Use is subject to license terms. */package com.jivesoftware.util;/** * Wrapper for all objects put into cache. It's primary purpose is to maintain * references to the linked lists that maintain the creation time of the object * and the ordering of the most used objects. * * This class is optimized for speed rather than strictly correct encapsulation. */public final class CacheObject {   /**    * Underlying object wrapped by the CacheObject.    */    public Object object;    /**     * The size of the Cacheable object. The size of the Cacheable     * object is only computed once when it is added to the cache. This makes     * the assumption that once objects are added to cache, they are mostly     * read-only and that their size does not change significantly over time.     */    public int size;    /**     * A reference to the node in the cache order list. We keep the reference     * here to avoid linear scans of the list. Every time the object is     * accessed, the node is removed from its current spot in the list and     * moved to the front.     */    public LinkedListNode lastAccessedListNode;    /**     * A reference to the node in the age order list. We keep the reference     * here to avoid linear scans of the list. The reference is used if the     * object has to be deleted from the list.     */    public LinkedListNode ageListNode;    /**     * A count of the number of times the object has been read from cache.     */    public int readCount = 0;    /**     * Creates a new cache object wrapper. The size of the Cacheable object     * must be passed in in order to prevent another possibly expensive     * lookup by querying the object itself for its size.<p>     *     * @param object the underlying Object to wrap.     * @param size the size of the Cachable object in bytes.     */    public CacheObject(Object object, int size) {        this.object = object;        this.size = size;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -