Recent content by Pawan

  1. Pawan

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

    $before = microtime(true); $collection->find( array() ); $after = microtime(true); $execution_mills = $after - $before; echo 'Execution time is : ' . $execution_mills;
Back
Top