main.cache.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /* $Id: main.cache.php 2871 2007-04-12 10:56:14Z munk $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. /*
  16. webapp-cache :
  17. don't change this unless you know what you are doing.
  18. don't use shm on multi-user-installs. it is not supported.
  19. */
  20. // no cache
  21. // require_once('inc/functions/functions.cache.off.php');
  22. // session-based cache
  23. require_once('inc/functions/functions.cache.session.php');
  24. // shared-mem-based cache (NOT for multi-user-installs !)
  25. // require_once('inc/functions/functions.cache.shm.php');
  26. /******************************************************************************/
  27. ?>