当前位置:首页 > PHP教程 > php应用 > 列表

redis+php实现微博(二)发布与关注功能详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-21 15:12:01 浏览: 评论:0 

这篇文章主要介绍了redis+php实现微博发布与关注功能,结合实例形式分析了php结合redis实现微博的发布及关注相关操作技巧,需要的朋友可以参考下。

本文实例讲述了redis+php实现微博发布与关注功能,分享给大家供大家参考,具体如下:

数据结构:

set post:postid:3:time timestamp

set post:postid:3:userid 5

set post:postid:3:content 测试发布哈哈哈哈

incr global:postid

set post:postid:$postidcho "用户名密码不能够为空!";

关注微博

following:3

被关注(粉丝)

followed:3

把发布的微博推给自己的粉丝

recivepost:10 postid

微博的发布代码:

  1. include("function.php"); 
  2. include("header.php"); 
  3. $content = I('content'); 
  4. if(!$content){ 
  5.   error('内容不能够为空'); 
  6. $user = isLogin(); 
  7. if($user==false){ 
  8.   header("location:index.php"); 
  9.   exit(); 
  10. $r = redis_connect(); 
  11. $postid = $r->incr('global:postid'); 
  12. //$r->set("post:postid:".$postid.":time",time()); 
  13. //$r->set("post:postid:".$postid.":userid",$user['userid']); 
  14. //$r->set("post:postid:".$postid.":content",$content); 
  15. $r->hmset("post:postid:".$postid,array('userid'=>$user['userid'],'username'=>$user['username'],'time'=>time(),'content'=>$content)); 
  16. //把微博推给自己的粉丝 
  17. $fans = $r->smembers("followed:".$user['userid']); 
  18. $fans[] = $user['userid']; 
  19. foreach($fans as $fansid){ 
  20.   $r->lpush('recivepost:'.$fansid,$postid); 
  21. //单独累计个人发布的信息 
  22. $r->lpush('userpostid:'.$user['userid'],$postid); 
  23. header("location:home.php"); 
  24. exit
  25. include("bottom.php"); 

微博的关注代码:

  1. include("function.php"); 
  2. include("header.php"); 
  3. if(isLogin()==false){ 
  4.   header("location:index.php"); 
  5.   exit
  6. $user = isLogin(); 
  7. $uid = trim($_GET['uid']); 
  8. $f = trim($_GET['f']); 
  9. $r = redis_connect(); 
  10. if($f==0){ 
  11.   //将关注与被关注的数据结构存入redis 
  12.   $r->sadd("following:".$user['userid'],$uid); 
  13.   $r->sadd("followed:".$uid,$user['userid']); 
  14. }else{  
  15.   //取消关注 
  16.   $r->srem("following:".$user['userid'],$uid); 
  17.   $r->srem("followed:".$uid,$user['userid']); 
  18. //根据传递过来的userid查找username 
  19. $uname = $r->get("user:userid:".$uid.":username"); 
  20. header("location:profile.php?u=".$uname); 
  21. include("bottom.php");

Tags: redis+php php微博关注

分享到: