1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2005 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="tempfilecleanup" class="com.cognos.pogo.services.TempFileCleanupService" loadPriority="100" logStartStop="false">
- <init-params>
- <init-param>
- <param-name>path</param-name>
- <param-value>${dispatcher.temp}</param-value>
- </init-param>
- <init-param>
- <!-- perl5 style regex for names of files to clean .* is often fine -->
- <param-name>regex</param-name>
- <param-value>uda.*|.*\.tmp</param-value>
- </init-param>
- <init-param>
- <!-- specify "true" for case sensitve match. Defaults to false -->
- <param-name>case_sensitive</param-name>
- <param-value>false</param-value>
- </init-param>
- <init-param>
- <!---->
- <param-name>age_limit_s</param-name>
- <param-value>6000</param-value>
- </init-param>
- <init-param>
- <!---->
- <param-name>interval_s</param-name>
- <param-value>600</param-value>
- </init-param>
- <init-param>
- <!-- set priority of the cleaner thread, as an increment
- from "normal". -1 means one notch lower than normal. -->
- <param-name>priority_adjust</param-name>
- <param-value>-1</param-value>
- </init-param>
- </init-params>
- </service>
|