SharedConfigurations.php 449 B

123456789101112131415161718192021222324
  1. <?php
  2. require_once '../lib/Predis.php';
  3. $single_server = array(
  4. 'host' => '127.0.0.1',
  5. 'port' => 6379,
  6. 'database' => 15
  7. );
  8. $multiple_servers = array(
  9. array(
  10. 'host' => '127.0.0.1',
  11. 'port' => 6379,
  12. 'database' => 15,
  13. 'alias' => 'first',
  14. ),
  15. array(
  16. 'host' => '127.0.0.1',
  17. 'port' => 6380,
  18. 'database' => 15,
  19. 'alias' => 'second',
  20. ),
  21. );
  22. ?>