What network time means for MySQL queries

I have a MySQL query that has the following performance profile:

/* 0 rows affected, 90.908 rows found. 
Duration for 1 query: 0,000 sec. (+ 0,125 sec. network) */

      

Which looks good, the online time is low. The database is running on localhost.

However, I have another request that has the following performance profile:

/* 0 rows affected, 28 rows found. 
Duration for 1 query: 0,000 sec. (+ 1,015 sec. network) */

      

What is the network as a whole? Is it just the time it takes to transport data between server and client?

+3


source to share


1 answer


Yes, it should be the time it takes for the response to pass from the server to the client.



0


source







All Articles