[ENTITY][Note][CONFIG] Use getListPartialCache for getReplies. Add feeds/cached_replies config entry to control how many replies get cached

This commit is contained in:
Hugo Sales 2022-02-27 21:50:42 +00:00
父節點 85ce6bfd41
當前提交 d5f90a1206
由不信任的使用者簽署: someonewithpc
GPG 金鑰 ID: 7D0C7EAFC9D835A0
共有 2 個檔案被更改,包括 18 行新增9 行删除

查看文件

@ -275,6 +275,7 @@ parameters:
feeds:
entries_per_page: 32
cached_replies: 8
plugin_tree_notes:
feed_replies: 3

查看文件

@ -28,10 +28,10 @@ use App\Core\Cache;
use App\Core\DB\DB;
use App\Core\Entity;
use App\Core\Event;
use function App\Core\I18n\_m;
use App\Core\Log;
use App\Core\Router\Router;
use App\Core\VisibilityScope;
use App\Util\Common;
use App\Util\Exception\ClientException;
use App\Util\Exception\NoSuchNoteException;
use App\Util\Formatting;
@ -39,9 +39,10 @@ use Component\Avatar\Avatar;
use Component\Conversation\Entity\Conversation;
use Component\Language\Entity\Language;
use Component\Notification\Entity\Attention;
use DateTimeInterface;
use function mb_substr;
use const PREG_SPLIT_NO_EMPTY;
use DateTimeInterface;
use function App\Core\I18n\_m;
use function mb_substr;
/**
* Entity for notes
@ -406,13 +407,20 @@ class Note extends Entity
*/
public function getReplies(int $offset = 0, int $limit = null): array
{
return Cache::getList(self::cacheKeys($this->getId())['replies'],
fn () => DB::findBy(self::class, [
'reply_to' => $this->getId()
],
order_by: ['created' => 'ASC', 'id' => 'ASC']),
return Cache::getListPartialCache(
key: self::cacheKeys($this->getId())['replies'],
calculate: function (int $limit, int $offset) {
return DB::findBy(
self::class,
['reply_to' => $this->getId()],
order_by: ['created' => 'ASC', 'id' => 'ASC'],
limit: $limit,
offset: $offset
);
},
max_cache_count: Common::config('feeds', 'cached_replies'),
left: $offset,
right: $limit
right: $limit - $offset
);
}