更新数据库时更新键/值的正确方法是什么?首先,我找到所有的靴子,但后来我又增加了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;