redis不用说啥了,比mysql有的是可以吹的地方,于是很多人选择用redis来实现这类操作频繁的场景
@(汗) 但是下午第一次安装redis花了好多时间...
这里借用[button href="https://www.jianshu.com/p/e3f0b98a78bc"]Redis实现用户关注功能[/button]的思路
于是有
<?php namespace frag\lib; class follow { public static $redis; public function __construct() { // 连接redis self::$redis = new \Redis(); self::$redis->connect(conf::get('IP', 'route'), 6379); } /** * 添加关注 * @param int $follower uid * @param int $fan uid */ public static function add($follower, $fan)