ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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 ``` ##