yii\mongodb\Cache::flushValues PHP 메소드

flushValues() 보호된 메소드

Child classes may implement this method to realize the flush operation.
protected flushValues ( ) : boolean
리턴 boolean whether the flush operation was successful.
    protected function flushValues()
    {
        $this->db->getCollection($this->cacheCollection)->remove();
        return true;
    }