We use jcs (1.3) in a web application, and over time we're seeing where two different keys (string based key) point to the same object
say we have key "a" key "b" if I call JCS.getCacheElement("a") I get the element where the key = "b". I then call JCS.remove("b") then call JCS.get("b") I get null but if I call JCS.get("a") I get the object cached for "b" and subsequent calls to JCS.get("b") now return the object. only if call JCS.remove("a") will the problem be fixed. it also seems to "right" itself over time I believe if it get dropped from the cache. I was able to see the key mismatch using the JCSAdmin.jsp to interrogate the cache. I'm trying to track down exactly when this happens. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]