Update PublicTimelineService, skip adds for now

This commit is contained in:
Daniel Supernault 2021-07-02 01:21:21 -06:00
parent 52ed8bf4ea
commit 117b8410eb
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -28,7 +28,8 @@ class PublicTimelineService {
public static function add($val)
{
return Redis::zadd(self::CACHE_KEY, 1, $val);
// return Redis::zadd(self::CACHE_KEY, $val, $val);
return;
}
public static function rem($val)
@ -64,4 +65,4 @@ class PublicTimelineService {
}
return 0;
}
}
}