更新Memcached值Yii2的正确方法

时间:2017-11-16 08:15:38

标签: php yii2 memcached

更新数据库时更新键/值的正确方法是什么?首先,我找到所有的靴子,但后来我又增加了10个靴子。当if statement!result时,我该如何更新我的键/值对的值?在第一次之后,我将始终有true,但表格数据可能会在那段时间内更改。红色很多材料,但没有找到正确的方法。

$mem = new \Memcached();
$mem->addServer("localhost", 11211);

$result = $mem->get("boots");

if(!$result){
    $boots = Product::find()->where('active=1')->asArray()->all();
    $mem->set("boots", $boots);
}

$result = $mem->get("boots");
var_dump($result);die;

0 个答案:

没有答案