We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63fc49 commit 83fd815Copy full SHA for 83fd815
README.md
@@ -82,3 +82,29 @@ the value is not found on new host.
82
* Wait until max session lifetime have expired
83
* Remove `oldHost` config
84
* Shut down old Redis host
85
+
86
+### Configguration example
87
+```
88
+$config = [
89
+ // Predis client parameters
90
+ 'parameters' => 'tcp://newhost:6379',
91
92
+ // Predis client options
93
+ 'options' => null,
94
95
+ // Old host
96
+ 'oldHost' => [
97
98
+ 'parameters' => 'tcp://oldhost:6379',
99
100
101
102
+ ],
103
104
+ // Key prefix
105
+ 'prefix' => 'simpleSAMLphp',
106
107
+ // Lifitime for all non expiring keys
108
+ 'lifetime' => 288000
109
+];
110
0 commit comments