According to the documentation at mysqli_use_result
One should not use mysqli_use_result() if a lot of processing on the client side is performed, since this will tie up the server and prevent other threads from updating any tables from which the data is being fetched.
Does this only pertain to myISAM tables or also for InnoDB?