> .jackrabbit.core.value.BLOBInTempFile.getStream(BLOBInTempFile.java:155) > .jackrabbit.core.value.InternalValue.createCopy(InternalValue.java:470)
That's exactly what I thought. It is JR that stores blobs retrieved from DB in file system to avoid unnecessary calls to DB. You can control this by setting system property "org.jackrabbit.useDataStore". The default value is "true" in which case temp files will be used for intermediary data such as blobs. To avoid temp files you can either set this to false, or you can reconfigure JR to use DBDataStore. In both cases you will not see temp files anymore, but in both cases you might see performance decrease and you will see increase in amount of queries sent to DB. Cheers, Jan ---------------------------------------------------------------- For list details see http://www.magnolia-cms.com/home/community/mailing-lists.html To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
