php
connect('127.0.0.1', 6379);
// 添加成员及其分数到有序集合
$redis->zAdd('article_ranking', 100, 'article_id_1');
$redis->zAdd('article_ranking', 200, 'article_id_2');
// 查询某个成员的分数
$score = $redis->zScore('article_ranking', 'article_id_1');
echo 'Article ID 1 的分数为:' . $score;
// 获取有序集合指定排名范围内的成员
$ranking = $redis->zRange('article_ranking', 0, -1, true);
foreach ($ranking as $articleId => $score) {
echo $articleId . ' 的分数为:' . $score . '
'; } // 删除指定成员 $redis->zRem('article_ranking', 'article_id_1'); // 关闭 Redis 连接 $redis->close(); ?>
'; } // 删除指定成员 $redis->zRem('article_ranking', 'article_id_1'); // 关闭 Redis 连接 $redis->close(); ?>
顶一下
(0)
0%
踩一下
(0)
0%
- 相关评论
- 我要评论
-