Phalcon 文档中有这个:
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() ”查找产生的最佳方法是什么?意思是,如果它被多次调用,它不应该进入数据库。
谢谢!