|
1795 | 1795 | * Connection details for the Key-Value store used for in-memory caching, |
1796 | 1796 | * for example when using Valkey or Redis. |
1797 | 1797 | * |
1798 | | - * This is the brand-independent successor of the ``redis`` and |
1799 | | - * ``redis.cluster`` options below and supports the latest Valkey and Redis |
1800 | | - * releases. Three topologies are supported: |
| 1798 | + * This is the brand-independent version of the ``redis`` and |
| 1799 | + * ``redis.cluster`` options below without depending on ``php-redis`` |
| 1800 | + * meaning no additional PHP extension needs to be installed. |
| 1801 | + * Redis and Valkey 4.0 up to 8.0 are supported, for SSL support Redis v6 or higher is required, |
| 1802 | + * Valkey 9 is supported but without support for numbered databased when using cluster mode. |
| 1803 | + * |
| 1804 | + * Warning: If the cache server is not hosted on the same machine as Nextcloud, |
| 1805 | + * this can have a network overhead compared to the ``php-redis`` based backend below. |
| 1806 | + * |
| 1807 | + * Three topologies are supported: |
1801 | 1808 | * a single server, a Sentinel managed replication set, and a |
1802 | 1809 | * server cluster. Configure exactly one of ``server``, ``sentinel`` or |
1803 | 1810 | * ``seeds``. |
|
1881 | 1888 | * |
1882 | 1889 | * We also support Redis SSL/TLS encryption as of version 6. |
1883 | 1890 | * See https://redis.io/topics/encryption for more information. |
1884 | | - * |
1885 | | - * @deprecated 34.0.0 use `memcache.kvstore` instead which supports also Valkey. |
1886 | 1891 | */ |
1887 | 1892 | 'redis' => [ |
1888 | 1893 | 'host' => 'localhost', // can also be a Unix domain socket: '/tmp/redis.sock' |
|
1922 | 1927 | * |
1923 | 1928 | * Authentication works with phpredis version 4.2.1+. See |
1924 | 1929 | * https://github.com/phpredis/phpredis/commit/c5994f2a42b8a348af92d3acb4edff1328ad8ce1 |
1925 | | - * |
1926 | | - * @deprecated 34.0.0 use `memcache.kvstore` instead which supports also Valkey. |
1927 | 1930 | */ |
1928 | 1931 | 'redis.cluster' => [ |
1929 | 1932 | 'seeds' => [ // provide some or all of the cluster servers to bootstrap discovery, port required |
|
0 commit comments