Phalcon docs中有这个:
http://docs.phalconphp.com/en/latest/reference/models.html#taking-advantage-of-relationships
假设我有这样的代码:
public function initialize()
{
$this->hasMany("id", "RobotsParts", "robots_id");
}
/**
* Return the related "robots parts"
*
* @return \RobotsParts[]
*/
public function getRobotsParts($parameters=null)
{
return $this->getRelated('RobotsParts', $parameters);
}
我想知道什么是缓存“ - > getRelated()”查找产生的最佳方法?这意味着,如果多次调用它,它不应该进入数据库。
谢谢!
答案 0 :(得分:0)
假设您已在服务容器中定义了缓存机制,则可以执行以下操作:
public function getRobotsParts($parameters=null)
{
$di = \Phalcon\DI::getDefault();
$key = 'cache_robots_parts_' . $this->id;
$cache = $di->cache->get($key);
if (null == $cache) {
$results = $this->getRelated('RobotsParts', $parameters);
} else {
$results = $cache;
}
return $results;
}
答案 1 :(得分:0)
可能写得很短:
public function getRobotsParts($parameters=null)
{
$parameters['cache'] = array(
'lifetime' => 123,
'key' => 'cache_robots_parts_' . $this->id,
);
return $this->getRelated('RobotsParts', $parameters);
}
或者更简短,如果在方法中设置$parameters['cache']
,则会导致此