Maison  >  Article  >  base de données  >  Comment utiliser PHP+Redis pour implémenter la liste de classement

Comment utiliser PHP+Redis pour implémenter la liste de classement

PHPz
PHPzavant
2023-05-31 13:46:06825parcourir

Implémenter une petite liste de classement fonctionnel via php et redis Le type de données utilisé est un ensemble ordonné : tri ascendant zrevrange, tri décroissant 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;
    }

Comment utiliser PHP+Redis pour implémenter la liste de classement

.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer