企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## renameNx ##### *Description* Same as rename, but will not replace a key if the destination already exists. This is the same behaviour as setNx. 看起来功能和rename是一样的,但是renameNx不是KEY改名的功能,而是复制一个KEY的VALUE到一个新的KEY。是复制出一个新的KEY-VALUE,而VALUE则是srcKEY的VALUE,而不是PHP中的引用概念。 ##### *Example* ``` <pre class="calibre9">$redis->set('x', '42'); $redis->renameNx('x', 'y'); $redis->get('y'); // → 42 $redis->get('x'); // → 42 ``` ``` <pre class="calibre9">$redis->set('x','39'); ``` ``` <pre class="calibre9">$redis->get('x');    //->39 ``` ``` <pre class="calibre9">$redis->get('y');    //->42 ``` ##