which is faster mysql_unbuffered_query or mysql_query ?
Top Questions
when we do the select queries that retrieve large data sets from MySQL, mysql_unbuffered_query in PHP is likely to give better performance than mysql_query.
PHP manual says,
it “sends a SQL query query to MySQL, without fetching and buffering the result rows automatically”
Post new comment