首頁 > 資料庫 > Redis > 主體

怎麼用PHP+Redis來實現排行榜

PHPz
發布: 2023-05-31 13:46:06
轉載
859 人瀏覽過

透過php和redis實作一個小功能排行榜,用的資料型別是有序集合:zrevrange 遞增排序,zrange 遞減排序

/**
     * 排行榜     */public function rank()
    {// $this->zrem($this->cachekey);$this->redis->del($this->cachekey);$dataOne = [];for ($i=0; $i < 5; $i++) { 
          // 生成随机数$num = rand(0,100);// 生成随机字符串$str = $this->get_random(6,&#39;abcdefghijklmnopqrstuvwxyzABCDEFJHIJKLMNOPQRSTUVWXYZ&#39;);            $this->redis->zadd($this->cachekey,$num,json_encode([&#39;name&#39;=>$str]));// 由大到小排序$dataOne = $this->redis->ZREVRANGE($this->cachekey, 0, -1, true);// 由小到大排序$dataTow = $this->redis->ZRANGE($this->cachekey, 0, -1, true);
        }echo "<pre class="brush:php;toolbar:false">";print_r($dataOne);print_r($dataTow);

    }// 生成随机字符串public function get_random($len,$chars)
    {$hash = "";$max = strlen($chars) - 1;for ($i=0; $i < $len; $i++) { $hash .= $chars[mt_rand(0,$max)];
        }return $hash;
    }
登入後複製

怎麼用PHP+Redis來實現排行榜

#

以上是怎麼用PHP+Redis來實現排行榜的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!