[Opensymphony-oscache] flushing non existing group

nospor <[email protected]> Mon, 01 Aug 2005 02:45:09 CDT
Newsgroups gmane.comp.java.open-symphony.os-cache
Message-ID <20140850.1122882339523.JavaMail.os-j2ee@opensymphony01.contegix.com>
No, I'm not too quick :) I just actualize AbstractConcurrentReadCache.java from CVS and there is nothing new.Still the same problem

AbstractConcurrentReadCache.java:
//....
protected HashMap groups = new HashMap();//line 271
//....
        if (memoryCaching && (groups != null)) {
            groupEntries = (Set) getGroupForReading(groupName);//line 372
        }
//.......
    protected synchronized final Set getGroupForReading(String groupName) {
    	Set group = (Set) getGroupsForReading().get(groupName);           
        return new HashSet(group);//line 954
    }
//......

---------------------------------------------------------------------
Posted via Jive Forums
http://forums.opensymphony.com/thread.jspa?threadID=4768&messageID=11804#11804