• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question How to output execution time of a query from MongoDB to PHP window

cafcrob123

New Pleskian
Hi All,

I am a university student and require some help, I have been trying to find out how to show the execution time of simple SQL queries such as insert select delete etc

I have already understood how to insert data into MongoDB but what I need to find now is how to code it so once the code has inserted the data in the DB it shows the time it had taken to perform the insert ,, the preferred way of showing this would be on a php window once the insert button has been clicked,

I hope t hear from you soon

This is the code I have...

$m = new MongoDB\Client("");
$db=$m->PHP;
$collection=$db->Users;

if($_POST)
{

$insert= array(
'name' => $_POST['name'],
'email' => $_POST['email'],
'qebsite' => $_POST['website'],
);

if($collection->insertOne($insert))

{
echo "data is Inserted";
}

else{
echo "some issue";
}

}
else{
echo "No data to store";
}
?>
 
PHP:
$before = microtime(true);
    $collection->find( array() );
    $after = microtime(true);
    $execution_mills = $after - $before;
    echo 'Execution time is : ' . $execution_mills;
 
Back
Top