本文整理匯總了PHP中Memcached_DataObject::multiGet方法的典型用法代碼示例。如果您正苦於以下問題:PHP Memcached_DataObject::multiGet方法的具體用法?PHP Memcached_DataObject::multiGet怎麽用?PHP Memcached_DataObject::multiGet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Memcached_DataObject
的用法示例。
在下文中一共展示了Memcached_DataObject::multiGet方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: attachments
function attachments()
{
if ($this->_attachments != -1) {
return $this->_attachments;
}
$f2ps = Memcached_DataObject::listGet('File_to_post', 'post_id', array($this->id));
$ids = array();
foreach ($f2ps[$this->id] as $f2p) {
$ids[] = $f2p->file_id;
}
$files = Memcached_DataObject::multiGet('File', 'id', $ids);
$this->_attachments = $files->fetchAll();
return $this->_attachments;
}
示例2: onEndNoticeListPrefill
/**
* Pre-cache our spam scores if needed.
*/
function onEndNoticeListPrefill(&$notices, &$profiles, $avatarSize)
{
if ($this->hideSpam) {
foreach ($notices as $notice) {
$ids[] = $notice->id;
}
Memcached_DataObject::multiGet('Spam_score', 'notice_id', $ids);
}
return true;
}