mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
21 lines
472 B
PHP
21 lines
472 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Redis;
|
|
use App\Hashtag;
|
|
use App\StatusHashtag;
|
|
use App\HashtagFollow;
|
|
|
|
class HashtagFollowService
|
|
{
|
|
const FOLLOW_KEY = 'pf:services:hashtag-follows:v1:';
|
|
|
|
public static function getPidByHid($hid)
|
|
{
|
|
return Cache::remember(self::FOLLOW_KEY . $hid, 86400, function() use($hid) {
|
|
return HashtagFollow::whereHashtagId($hid)->pluck('profile_id')->toArray();
|
|
});
|
|
}
|
|
}
|