PHP+Redis实现排行榜

2021/4/15 2:25:15

本文主要是介绍PHP+Redis实现排行榜,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

通过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,'abcdefghijklmnopqrstuvwxyzABCDEFJHIJKLMNOPQRSTUVWXYZ');
            
            $this->redis->zadd($this->cachekey,$num,json_encode(['name'=>$str]));

            // 由大到小排序
            $dataOne = $this->redis->ZREVRANGE($this->cachekey, 0, -1, true);

            // 由小到大排序
            $dataTow = $this->redis->ZRANGE($this->cachekey, 0, -1, true);
        }

        echo "<pre>";
        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实现排行榜的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程