Redis实现微博后台业务逻辑系列(八)

本文涉及的产品
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
云数据库 Tair(兼容Redis),内存型 2GB
简介:

微博评论功能:

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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import  redis
 
class  Comment( object ):
     """创建评论"""
     def  __init__( self , client):
         self .client  =  client
         
     def  create( self , author_id, content):
         """创建一条评论,并返回评论ID"""
         comment_id  =  IdGenerator( "weibo::comment::id" self .client).gen()
         comment_key  =  "weibo::comment::"  +  str (comment_id)
         self .client.hmset(comment_key, { "id" : comment_id,  "author_id" : author_id,  "time" int (time.time()),  "content" : content})
         return  comment_id
         
     def  get_by_id( self , comment_id):
         """获取指定ID的评论内容"""
         comment_key  =  "weibo::comment::"  +  str (comment_id)
         return  self .client.hgetall(comment_key)
 
 
class  CommentList( object ):
     """将评论推入到该微博的评论列表中"""
     def  __init__( self , msg_id, client):
         self .msg_id  =  msg_id
         self .client  =  client
         self .key  =  "weibo::message::"  +  str (msg_id)  +  "::comments"
         
     def  push( self , comment_id):
         """将评论ID推入到该微博的列表中"""
         self .client.lpush( self .key, comment_id)
         
     def  count( self ):
         """获取该微博的总评论数"""
         return  self .client.llen( self .key)
 
     def  paging( self , n):
         """查看第几页的评论,返回的是评论的ID"""
         count  =  5   # 5条评论为一页
         start_index  =  (n - 1 *  count
         end_index  =  n * count  -  1
         return  self .client.lrange( self .key, start_index, end_index)
 
 
if  __name__  = =  "__main__" :
     redis_client  =  redis.StrictRedis()
     # 10010用户新写了一条微博
     msg  =  Message(redis_client)
     message_id, weibo_timestamp  =  msg.create( 10010 "very nice day" )
     # 10086用户给这条微博做了评论
     comment  =  Comment(redis_client)
     comment_id  =  comment.create( 10086 "very good" )
     # 将10086的这条评论推入到10010用户发布的微博的评论列表中
     comment_list  =  CommentList(message_id, redis_client)
     comment_list.push(comment_id)
     # 获取这条微博的总评论数
     print (comment_list.count())
     # 查看该微博的第一页评论内容(ID)
     print (comment_list.paging( 1 ))

    当我们发布一条微博后,所有人都可以对该微博进行评论。对于每条评论,redis都会分配唯一的一个评论ID,用格式为"weibo::comment::<id>"的散列键来存储评论的发布者,发布时间和内容等信息。对于每条微博,redis都会使用一个列表键"weibo::message::<id>::comments"来存储该微博的所有评论的ID;每当有新的评论产生时,redis都会把评论ID从左侧推入到列表中,所有的新评论都在列表左侧,旧的评论都在列表右侧。

        至此我们已经实现了微博的所有基本功能,当然这仅仅只是一个简单的IT框架,没有考虑高并发高负载高可用的用户访问,Redis微博系列也到此结束,谢谢!

本文转自戴柏阳的博客博客51CTO博客,原文链接http://blog.51cto.com/daibaiyang119/1963060如需转载请自行联系原作者


daibaiyang119

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
6月前
|
NoSQL Java Redis
springboot搭建后台框架 (二)整合Redis
springboot搭建后台框架 (二)整合Redis
72 0
|
12月前
|
NoSQL Linux Redis
linux下后台启动redis
linux下后台启动redis
126 0
|
6月前
|
NoSQL Linux Redis
Linux系统中安装redis+redis后台启动+常见相关配置
Linux系统中安装redis+redis后台启动+常见相关配置
|
2月前
|
NoSQL Linux 测试技术
redis的安装步骤及前台,后台redis服务启动
这篇文章介绍了Redis的安装步骤,包括在Linux系统中下载、传输、解压、编译、安装Redis,以及Redis服务的前台和后台启动方法。
redis的安装步骤及前台,后台redis服务启动
|
4月前
|
存储 缓存 NoSQL
Redis性能优化问题之优化 Redis fork 耗时严重的问题,如何解决
Redis性能优化问题之优化 Redis fork 耗时严重的问题,如何解决
|
4月前
|
缓存 NoSQL Redis
Redis性能优化问题之当Redis内存达到maxmemory后,淘汰数据的逻辑是怎样的
Redis性能优化问题之当Redis内存达到maxmemory后,淘汰数据的逻辑是怎样的
|
6月前
|
存储 NoSQL 数据处理
Redis Lua脚本:赋予Redis更强大的逻辑与功能
Redis Lua脚本:赋予Redis更强大的逻辑与功能
137 0
|
12月前
|
缓存 NoSQL 中间件
太卷了!京东、微博最新「Redis缓存高手心法手册」竟被开源了
众所周知,分布式架构被广泛应用于企业级应用开发中,以满足高并发、高可用、高性能、高扩展性等要求。
|
NoSQL Redis 数据库
Redis 常见面试问题 Redis持久化aof后台重写和写时复制
今天有个群里网友问,redis面试被问到aof 后台重写 写时复制,我尝试回答一下
436 8
基于SpringBoot+Redis+Vue的后台管理系统开源项目,附源码地址
eladmin 是一款基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue 的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由。