所以我昨天才开始学习如何使用memcache。所以还有很多事情要做。到目前为止,我已经了解了如何安装它,并看到了一些关于如何使用它的教程。但他们都解释了如何静态地输入它。我在类中执行所有数据库查询,并通过 foreach 循环返回的数据运行。我让它工作没有任何编译错误,但内存缓存实际上不会工作。我很困惑为什么。我的班级是这样设置的。
class Feed extends Database
{
private $Memcache;
public function __construct()
{
parent::__construct();
$this->Memcache = new Memcache;
} //end __construct
public function getFeed ($var)
{
$feed = array(); //Initialize an empty array
$this->Memcache->connect('localhost', 11211);
$key = "SELECT col FROM table WHERE value = " . $var . " ORDER BY timestamp DESC LIMIT 30";
$cache = $this->Memcache->get($key);
if ($cache)
{
$feed = '';
}
else
{
//Query the database
$Statement = $this->Database->prepare("SELECT col FROM table WHERE value = ? ORDER BY timestamp DESC LIMIT 30");
$Statement->execute(array($var));
while($row = $Statement->fetch(PDO::FETCH_ASSOC))
{
$feed[] = array("row1" => $row["col1"],
"row2" => $row["col2"] );
}
$this->Memcache->set($key, $row, 0, 40); // Store the result of the query for 40 seconds
}
return $feed;
} //end getFeed
} //end Feed
输出设置如下
<?php foreach ($Feed->getFeed($var) as $feed): ?>
<p><?php echo $feed["row1"]; ?></p>
<?php endforeach; ?>
所以很明显,如果 memcache 正在工作,它们将是一个编译错误,因为我使用 foreach 循环运行 $feed。由于我对 memcache 的了解有限,你们中的任何人都知道它为什么不检索数据。
非常感谢你!