hi, I have changed the remove method a little bit. know objects are only removed from the fs when configured. this mrumemorystore gets some late attention :) cheers gerhard -- Gerhard Fröhlich [EMAIL PROTECTED] "black holes are, when GOD is dividing by zero" GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
Index: MRUMemoryStore.java =================================================================== RCS file: /home/cvspublic/xml-cocoon2/src/org/apache/cocoon/components/store/MRUMemoryStore.java,v retrieving revision 1.15 diff -u -r1.15 MRUMemoryStore.java --- MRUMemoryStore.java 2001/08/24 00:33:10 1.15 +++ MRUMemoryStore.java 2001/08/24 08:01:39 @@ -339,7 +339,9 @@ getLogger().debug("Removing object from store"); this.cache.remove(key); this.mrulist.remove(key); - this.fsstore.remove(getFileName(key.toString())); + if(this.filesystem) { + this.fsstore.remove(getFileName(key.toString())); + } } /**
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]