gpt4 book ai didi

PHP+redis实现微博的拉模型案例详解

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章PHP+redis实现微博的拉模型案例详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了PHP+redis实现微博的拉模型。分享给大家供大家参考,具体如下:

上回写了一篇推模型的内容,这回分享一篇拉模型的内容.

拉模型 。

拉模型就是展示微博的时候,获取自己的所有关注的人,然后从关注的人中拉取最新微博.

微博项目数据结构设计 。

user表设计 。

注册的时候将user数据写入redis中,key如下:

user数据的key 用户名=user:uesrid:$uesrid:username 密码=user:userid:$userid:password 。

还需要这样写一份,因为需要靠用户名来登录,这样就可以根据用户名来查询用户id.

?
1
user:username:userid: $userid

关注的人和粉丝设计 。

每个用户在产生关注的动作后,在redis中维护两个无序集合set,一个是following,一个是follower,following集合保存的是我关注的人,follower集合保存的是我的粉丝。注意是每个用户都要维护这样的两个集合,用userid来区别.

单条微博表设计 。

每条微博的信息用hash结构来存储,根据不同的微博id来区分,每条微博有如下信息:发布人id,发布人昵称,发布时间,微博内容.

拉取关注者微博表 设计 。

每个用户发布微博后,维护20条最新微博,并保存到有序集合sorted set中,用不同的userid来区分.

注意:有序集合的score用微博id,集合保存的也是微博id.

个人微博表 。

每个用户维护自己的微博,保存到链表中,只保存1000条,redis中只保存1000条微博数据,如果想查询更多,去数据库中查询.

个人已拉取表设计 。

每个用户在拉取微博后,将微博保存到已经拉取的表中,这个表是一个链表结构,最多保存1000条微博.

发布微博 。

首先将微博保存成hash结构,然后将微博保存到拉取表,还保存到个人微博表.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//1、保存微博
$conn = connredis();
$postid = $conn ->incr( 'global:postid' );
$conn ->hmset( 'post:postid:' . $postid ,[ 'userid' => $user [ 'userid' ], 'username' => $user [ 'username' ], 'time' =>time(), 'content' => $content ]);
//2、每个人维护20条最新微博,保存到有序集合中
$conn ->zadd( 'starpost:userid:' . $user [ 'userid' ], $postid , $postid );
if ( $conn ->zcard( 'starpost:userid:' . $user [ 'userid' ]) > 20){
   $conn ->zremrangebyrank( 'starpost:userid:' . $user [ 'userid' ],0,0);
}
//3、维护个人的1000条微博,保存到链表中
$conn ->lpush( 'mypost:userid:' . $user [ 'userid' ], $postid );
if ( $conn ->llen( 'mypost:userid:' . $user [ 'userid' ]) > 1000){
   $conn ->rpoplpush( 'mypost:userid:' . $user [ 'userid' ], 'global:post' );
}

展示微博 。

首先获取所有关注的人,获取上次拉取微博的位置,根据上次拉取的微博位置来拉取数据。然后给微博排序,设置新的拉取的位置,写入到已拉取表中,获取微博的详细内容,最后获取粉丝和关注数。进行展示即可.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//1、获取拉取对象
$stars = $conn ->smembers( 'following:' . $user [ 'userid' ]); //获取所有关注的人
$stars [] = $user [ 'userid' ]; //需要拉取自己的微博
//2、获取上次拉取的位置
$lastpull = $conn ->get( 'lastpull:userid:' . $user [ 'userid' ]);
if (! $lastpull ){
$lastpull = 0;
}
//3、拉取微博
$latest = [];
foreach ( $stars as $star ){
$latest = array_merge ( $latest , $conn ->zrangebyscore( 'starpost:userid:' . $star , $lastpull +1,1<<32-1));
}
//4、给微博排序
sort( $latest ,SORT_NUMERIC);
//5、设置拉取的位置
if (! empty ( $latest )){
   $conn ->set( 'lastpull:userid:' . $user [ 'userid' ], end ( $latest ));
}
//6、写入到已拉取表中
foreach ( $latest as $l ){
   $conn ->lpush( 'receivepost:' . $user [ 'userid' ], $l );
}
$conn ->ltrim( 'receivepost:' . $user [ 'userid' ],0,999); //至多显示1000条微博
//7、获取微博的详细内容
$postids = $conn ->sort( 'receivepost:' . $user [ 'userid' ],[ 'sort' => 'desc' ]);
$posts = [];
foreach ( $postids as $postid ){
   $posts [] = $conn ->hmget( 'post:postid:' . $postid ,[ 'userid' , 'username' , 'time' , 'content' ]);
}
//8、获取粉丝和关注数
$fansnum = $conn ->scard( 'follower:' . $user [ 'userid' ]);
$follownum = $conn ->scard( 'following:' . $user [ 'userid' ]);

Q&A 。

如何保证拉取的数据时最新的?

在拉取的时候,将最近拉取的微博id保存到redis中,然后下次我们只需要去拉取比这次保存的微博id大的微博,就可以保证拉取的数据是之前没有拉取的.

如何拉取所有关注者的数据?

遍历关注者,然后拉取数据 。

假设拉取A关注者的微博1,4,5 B关注者2,3,但是他们的发布时间交错,怎么展示数据?

将所有关注者的最新微博都取出来,然后根据微博id进行排序.

希望本文所述对大家PHP程序设计有所帮助.

原文链接:https://blog.csdn.net/baochao95/article/details/73183753 。

最后此篇关于PHP+redis实现微博的拉模型案例详解的文章就讲到这里了,如果你想了解更多关于PHP+redis实现微博的拉模型案例详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com