<span style="font-family:courier new,monospace">The latest improvement on Redis module are very interesting, thanks for the contributiom, I would like to understand how the hiredis client is working with a &quot;redis cluster&quot;</span><span style="font-family:courier new,monospace"><br>
<br>Where can I find information on the &quot;server groups/cluster&quot; support ?<br><br>Is it working with &quot;Redis Sentinel&quot; (the official high availability solution for Redis).<br><br>The hiredis client documentation are not mentioning this mechanics. <br>
<a href="https://github.com/redis/hiredis">https://github.com/redis/hiredis</a><br><br><br><br><br><br>---------------------------------------------------<br>Module Documentation</span><br><span style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">---------------------------------------------------</span><br>
<br>1.5.1. cachedb_url (string)<br><br>The urls of the server groups that OpenSIPS will connect to in order to use the from script cache_store,cache_fetch, etc operations. It can be set more than one time. The prefix part of the URL will be the identifier that will be used from the script.<br>
<br>Example 1.1. Set cachedb_url parameter<br><br>...<br>modparam(&quot;cachedb_redis&quot;, &quot;cachedb_url&quot;,&quot;redis:group1://localhost:6379/&quot;);<br>modparam(&quot;cachedb_redis&quot;, &quot;cachedb_url&quot;,&quot;redis:cluster1://random_url:8888/&quot;);<br>
...<br>    <br><br>Example 1.2. Use Redis servers<br><br>...<br>cache_store(&quot;redis:group1&quot;,&quot;key&quot;,&quot;$ru value&quot;);<br>cache_fetch(&quot;redis:cluster1&quot;,&quot;key&quot;,$avp(10));<br>cache_remove(&quot;redis:cluster1&quot;,&quot;key&quot;);<br>
...<br>    </span><br>