adjusted comments so it matches the other files

This commit is contained in:
HB9HIL
2026-02-01 20:16:28 +01:00
parent a6ceb38ebe
commit c6178985ba

View File

@@ -1,10 +1,13 @@
<?php <?php
/** /*
* Redis Configuration | -------------------------------------------------------------------------
* | Redis settings
* Copy this sample file to redis.php and adjust settings as needed. | -------------------------------------------------------------------------
* | Copy this sample file to redis.php and set your settings as needed.
*/ |
| See: https://codeigniter.com/userguide3/libraries/caching.html#redis-caching
|
*/
// Connection type: 'tcp' for TCP/IP, 'unix' for Unix domain sockets // Connection type: 'tcp' for TCP/IP, 'unix' for Unix domain sockets
$config['socket_type'] = 'tcp'; $config['socket_type'] = 'tcp';
@@ -28,6 +31,3 @@ $config['timeout'] = 0;
// Redis database number (0-15 by default) // Redis database number (0-15 by default)
// Useful for separating different applications or data types // Useful for separating different applications or data types
// $config['database'] = 0; // $config['database'] = 0;
// Connection retry delay in milliseconds (useful for persistent connections)
// $config['retry_interval'] = 100;