~~~
<?php
/**
* @Author: 陈静
* @Date: 2018/05/29 07:33:49
* @Description:
*/
namespace app\redis\controller;
use Predis\Client;
use think\Controller;
class Tools extends Controller
{
public $oneWeekInSecond = 604800;
public $voteScore = 432;
public $redis = '';
public function __construct()
{
$redisConfig = config('redis');
$this->redis = new Client($redisConfig);
}
public function index()
{
//发布文章
// $this->postArticle(1, 'test1', 'test1');
// $this->postArticle(1, 'test2', 'test2');
// $this->postArticle(1, 'test3', 'test3');
//对文章投票
// $article['id'] = 1;
// $article['name'] = 'article:1';
// $this->articleVote(2,$article);
// $this->articleVote(3,$article,0);
//获取文章
// $article = $this->getArticles(1);
// halt($article);
}
//发布文章
public function postArticle($user,$title,$link)
{
//生成文章id
$articleId = $this->redis->incr('article:');
//将发布者添加到已投票的用户组去
$voted = 'voted:'.$articleId;
$this->redis->sadd($voted,$user);
$this->redis->expire($voted,$this->oneWeekInSecond);
$article = 'article:'.$articleId;
$this->redis->hmset($article,[
'title' => $title,
'link' => $link,
'poster' => $user,
'time' => time(),
'votes' => 1,
'opvotes' => 0
]);
$this->redis->zadd('score:',[$article => $this->voteScore]);
$this->redis->zadd('time:',[$article =>time()]);
return $articleId;
}
//用户投票功能
public function articleVote($user_id,$article,$type = 1)
{
$publishTime = $this->redis->zscore('time:',$article['name']);
//获取文章发布时间(超过一周不再允许投票)
if ($publishTime + $this->oneWeekInSecond < time()) {
return;
}
//投赞成票
if ($type == 1){
$result = $this->redis->sadd('voted:'.$article['id'],$user_id);
if ($result) {
$this->redis->zincrby('score:',$this->voteScore,$article['name']);
$this->redis->hincrby($article['name'],'votes',1);
}
}else{
//实现反对票
//1。检查用户是否投过赞成票
$hasVoted = $this->redis->sismember('voted:'.$article['id'],$user_id);
if ($hasVoted) {
return;
}
$result = $this->redis->sadd('OpVoted:',$user_id);
if ($result) {
$this->redis->zincrby('score:',-$this->voteScore,$article['name']);
$this->redis->hincrby($article['name'],'opvotes',1);
}
}
}
//获取文章
public $articlePerPage = 25;
public function getArticles($page,$order = 'score:')
{
$start = ($page - 1) * $this->articlePerPage;
$end = $start + $this->articlePerPage - 1;
$ids = $this->redis->zrevrange($order,$start,$end);
$articles = [];
foreach ($ids as $id){
$articleData = $this->redis->hgetall($id);
$articleData['id'] = $id;
$articles[] = $articleData;
}
return $articles;
}
//添加或者删除文章分组
public function addOrRemoveGroups($articleId,array $toAdd,array $toRemove)
{
$article = 'article:'.$articleId;
foreach ($toAdd as $group){
$this->redis->sadd('group:'.$group,$article);
}
foreach ($toRemove as $group){
$this->redis->srem('group:'.$group,$article);
}
}
//获取组内的文章
public function getGroupArticles($group,$page,$order = 'score:'){
$key = $order.$group;
if ($this->redis->exists($key)) {
$this->redis->zinterstore($key,['group:'.$group,$order],['aggregate' => 'max']);
$this->redis->expire($key,60);
}
return $this->getArticles($page,$key);
}
}
~~~
- PHP7新特性
- 优雅的写代码
- 常见的代码优化
- 常用的工具类
- PHP原生生成EXCEL
- PHP地理位置计算
- PHP获取服务器状态
- 驼峰转下划线
- 百度地图两点坐标距离计算
- 判断是否是url
- PHP常见header头
- 邮件发送类
- 阿拉伯数字转化为大写
- 获取汉字首个拼音
- 根据身份证号获取星座
- 生成验证码类
- 生成唯一ID
- 身份证验证类
- PHP中文转拼音
- Nginx配置文件
- curl获取网页内容
- 快递查询api
- 上传图片类
- 股票类
- 找回密码类
- 字符串助手函数
- 校验数据规则
- PHP获取收集相关信息
- 字符串截取助手函数
- 网页中提取关键字
- 检测浏览器语言
- 微信相关类
- 微信获取access_token
- 获取用户基本信息
- 代码规范
- 编程规范(psr-1,2)
- 编程规范(原作者的建议)
- 经验
- 常用函数地址
- 函数集合
- 一些常识
- MYSQL相关知识
- 常用sql
- mysql事务隔离级别
- Read uncommitted
- Read committed
- Repeatable read
- Serializable
- 高性能MYSQL读书笔记
- 第一章MYSQL的架构
- mysql逻辑架构
- redis相关知识
- 1.安装redis
- 3.php操作redis
- 队列
- 悲观锁
- 乐观锁
- 发布
- 订阅
- redis实战-文章投票
- 设计模式
- 创建模型实例
- 单例模式
- 工厂模式
- AnimalInterface.php
- Chicken.php
- Factory.php
- Farm.php
- Pig
- SampleFactory.php
- Zoo
- 抽象工厂模式
- AnimalFactory
- Factory
- FarmInterface
- Income
- PandaZoo
- PeonyZoo
- PigFarm
- PlantFactory
- RiceFarm
- ZooInterface
- 原型模式
- 建造者模式
- 结构型模式实例
- 桥接模式
- 享元模式
- 外观模式
- 适配器模式
- 装饰器模式
- 组合模式
- 代理模式哦
- 过滤器模式
- 行为型模式实例
- 模板模式
- 策略模式
- 状态模式
- 观察者模式
- 责任链模式
- 访问者模式
- 解释器模式
- 空对象模式
- 中介者模式
- 迭代器模式
- 命令模式
- 备忘录模式
- 网络知识
- 互联网协议概述
- nginx简易交互过程
- HTTP知识
- LINUX相关知识
- swoole学习
- 1.初识swoole
- 2.WebSocket PHP 即时通讯开发
- 3.异步多进程的 CURL
- 4.异步非阻塞多进程的 Http 服务器
- 5.TCP 服务器
- 5.1同步 TCP 客户端
- 5.2异步 TCP 客户端
- 6.UDP 服务器
- 7.异步多任务处理
- 8.毫秒定时器
- 9.高并发投票
- ThinkPHP5学习
- 命令行操作
- 所有命令行中用到的基类
- 1.base
- 2.WorkerBase
- 3.TimeWorkerBase
- 4.CycleWorkerBase
- 5.WorkerCommandBase
- 6.WorkerHookBase
- 1.基础命令实现
- 2.建立Linux上的守护源码
- 3.发送模板消息
- 4.基于命令行实现自己的队列模式
- 5.发送定时短信
- thinkphp5使用sentry
- sentry通知,记录日志
- 高级查询
- Kafka相关
- 1.安装
- 2.为php打扩展
- 3.kafka实现
- 一些工具搭建
- sentry日志收集系统搭建
- walle搭建
- php实现定时任务
- 检测文件变化