mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
22 lines
472 B
PHP
22 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();
|
||
|
});
|
||
|
}
|
||
|
}
|