tempfilecleanup.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: disp
  4. (C) Copyright IBM Corp. 2005 2010
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. -->
  7. <service name="tempfilecleanup" class="com.cognos.pogo.services.TempFileCleanupService" loadPriority="100" logStartStop="false">
  8. <init-params>
  9. <init-param>
  10. <param-name>path</param-name>
  11. <param-value>${dispatcher.temp}</param-value>
  12. </init-param>
  13. <init-param>
  14. <!-- perl5 style regex for names of files to clean .* is often fine -->
  15. <param-name>regex</param-name>
  16. <param-value>uda.*|.*\.tmp</param-value>
  17. </init-param>
  18. <init-param>
  19. <!-- specify "true" for case sensitve match. Defaults to false -->
  20. <param-name>case_sensitive</param-name>
  21. <param-value>false</param-value>
  22. </init-param>
  23. <init-param>
  24. <!---->
  25. <param-name>age_limit_s</param-name>
  26. <param-value>6000</param-value>
  27. </init-param>
  28. <init-param>
  29. <!---->
  30. <param-name>interval_s</param-name>
  31. <param-value>600</param-value>
  32. </init-param>
  33. <init-param>
  34. <!-- set priority of the cleaner thread, as an increment
  35. from "normal". -1 means one notch lower than normal. -->
  36. <param-name>priority_adjust</param-name>
  37. <param-value>-1</param-value>
  38. </init-param>
  39. </init-params>
  40. </service>