0

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

谢谢!

4

2 回答 2

0

可以写成简写:

public function getRobotsParts($parameters=null)
{
    $parameters['cache'] = array(
        'lifetime' => 123,
        'key'      => 'cache_robots_parts_' . $this->id,
    );

    return $this->getRelated('RobotsParts', $parameters);
}

或者更短,如果$parameters['cache']在方法中设置,这会导致

于 2014-07-13T18:00:15.817 回答
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;
}
于 2013-11-06T15:15:44.240 回答