我想用計數行檢查我的代碼。但是這個代碼工作得很慢。我如何優化此代碼?無論如何算數?用PHP計算MongoDB速度太慢
$find = $conn_stok->distinct("isbn");
for($i=0;$i<=25; $i++) {
$isbn = $find[$i];
$countit= $conn_kit->find(array('isbn'=>$isbn))->count();
if($countit> 0){
echo "ok<br>";
} else {
echo "error<br>";
}
}
這是什麼編程語言? PHP?添加標籤。 –
對不起,我忘了添加php標籤。 – user2396307
你試過'$ conn_kit-> count();'而不是? –