基於Redis的使用者發微博

2021-10-07 14:35:29 字數 821 閱讀 3756

步驟1:建立content表

create table `content` (

`id` int(10) unsigned not null auto_increment,

`user_id` int(10) not null default '0' comment '使用者id',

`content` varchar(5000) not null default '' comment '內容',

`deleted` tinyint(4) unsigned not null default '0' comment '刪除標誌,預設0不刪除,1刪除',

`update_time` timestamp not null default current_timestamp on update current_timestamp comment '更新時間',

`create_time` timestamp not null default current_timestamp comment '建立時間',

primary key (`id`)

) engine=innodb auto_increment=1 default charset=utf8 comment='內容表';

步驟2:發微博邏輯
@apioperation(value="使用者發微博")

public void post(@requestbody contentvo contentvo)

/*** 使用者發微博

*/public content addcontent(content obj)

步驟3:體驗

基於Redis的微博的註冊

基於redis的微博的註冊 redis在網際網路公司中是必選的技術,因為網際網路公司的系統天生就是高併發特徵。但是能把redis運用的最好的就屬微博了。正因為redis的廣泛應用,使得微博能夠快速支撐日活躍使用者超2億,每日訪問量百億級,歷史資料高達千億級。微博線上規模,100t 儲存,1000 臺...

基於redis的微博個人首頁

使用者發的文章是hash儲存,key為postid 使用者的關注的人set儲存,fowlee 使用者的被關注的人set儲存,follower 我的主頁是乙個list,userid 後面是postid 關注的頁面是乙個list,userid後面是關注人之前發過的postid 使用者發了文章,首先將文章...

微博開放平台 發微博測試

搞了一下午的微博開放平台,真的有許多坑,不得不說給了我莫大的幫助 首先微博開放平台建立應用,因為我只調介面所以是微連線 網頁應用 個人開發者只能建立微連線 然後錄入表單基本資訊 這裡有開發者註冊的入口,沒註冊的要去註冊資訊 其中安全網域名稱要加上 不加http 坑 後面有用。好多必填項,尤其有好多要...