1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
course-tencent-cloud/app/Caches/UserDailyCounter.php
2020-04-03 19:20:46 +08:00

37 lines
703 B
PHP

<?php
namespace App\Caches;
class UserDailyCounter extends Counter
{
protected $lifetime = 86400;
public function getLifetime()
{
$tomorrow = strtotime('tomorrow');
return $tomorrow - time();
}
public function getKey($id = null)
{
return "user_daily_counter:{$id}";
}
public function getContent($id = null)
{
return [
'favorite_count' => 0,
'comment_count' => 0,
'consult_count' => 0,
'order_count' => 0,
'chapter_vote_count' => 0,
'comment_vote_count' => 0,
'consult_vote_count' => 0,
'review_vote_count' => 0,
];
}
}