memcache_ui.local.php 424 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Local configuration values
  5. *
  6. * This script is loaded from an instance of the Core\Config class.
  7. *
  8. * Useful properties:
  9. * - $this->account
  10. * - $this->password
  11. * - $this->servers
  12. */
  13. /*
  14. $this->account = 'apc';
  15. $this->password = 'apc';
  16. $this->servers = array(
  17. 'localhost:11211',
  18. );
  19. */
  20. $dsn = 'sqlite:/var/lib/memcache_ui.sq3';
  21. $dsn = 'sqlite:memcache_ui.sq3';
  22. $db = new PDO($dsn);
  23. var_dump($db);