|
1787 | 1787 | * Connection details for the Key-Value store used for in-memory caching, |
1788 | 1788 | * for example when using Valkey or Redis. |
1789 | 1789 | * |
1790 | | - * This is the brand-independent successor of the ``redis`` and |
1791 | | - * ``redis.cluster`` options below and supports the latest Valkey and Redis |
1792 | | - * releases. Three topologies are supported: |
| 1790 | + * This is the brand-independent version of the ``redis`` and |
| 1791 | + * ``redis.cluster`` options below without depending on ``php-redis`` |
| 1792 | + * meaning no additional PHP extension needs to be installed. |
| 1793 | + * Redis and Valkey 4.0 up to 8.0 are supported, for SSL support Redis v6 or higher is required, |
| 1794 | + * Valkey 9 is supported but without support for numbered databased when using cluster mode. |
| 1795 | + * |
| 1796 | + * Warning: If the cache server is not hosted on the same machine as Nextcloud, |
| 1797 | + * this can have a network overhead compared to the ``php-redis`` based backend below. |
| 1798 | + * |
| 1799 | + * Three topologies are supported: |
1793 | 1800 | * a single server, a Sentinel managed replication set, and a |
1794 | 1801 | * server cluster. Configure exactly one of ``server``, ``sentinel`` or |
1795 | 1802 | * ``seeds``. |
|
1873 | 1880 | * |
1874 | 1881 | * We also support Redis SSL/TLS encryption as of version 6. |
1875 | 1882 | * See https://redis.io/topics/encryption for more information. |
1876 | | - * |
1877 | | - * @deprecated 34.0.0 use `memcache.kvstore` instead which supports also Valkey. |
1878 | 1883 | */ |
1879 | 1884 | 'redis' => [ |
1880 | 1885 | 'host' => 'localhost', // can also be a Unix domain socket: '/tmp/redis.sock' |
|
1914 | 1919 | * |
1915 | 1920 | * Authentication works with phpredis version 4.2.1+. See |
1916 | 1921 | * https://github.com/phpredis/phpredis/commit/c5994f2a42b8a348af92d3acb4edff1328ad8ce1 |
1917 | | - * |
1918 | | - * @deprecated 34.0.0 use `memcache.kvstore` instead which supports also Valkey. |
1919 | 1922 | */ |
1920 | 1923 | 'redis.cluster' => [ |
1921 | 1924 | 'seeds' => [ // provide some or all of the cluster servers to bootstrap discovery, port required |
|
0 commit comments