Owl\Repositories\Eloquent\StockRepository::getRecentRankingWithCache PHP 메소드

getRecentRankingWithCache() 공개 메소드

Get recent ranking data from cache.
public getRecentRankingWithCache ( $limit, $dayPeriod ) : array
$limit int limit date
$dayPeriod int day period
리턴 array
    public function getRecentRankingWithCache($limit, $dayPeriod)
    {
        $result = $this->getRankingStockList($limit, $dayPeriod);
        return $result;
    }