Which of these options is more optimal?

imploding in MySQL

$rsFriends = $cnn->Execute('SELECT CAST(GROUP_CONCAT(id_friend) AS CHAR) AS friends 
                              FROM table_friend 
                             WHERE id_user = '.q($_SESSION['id_user']));
$friends = $rsFriends->fields['friends'];
echo $friends;

vs.

imploding in PHP

$rsFriends = $cnn->Execute('SELECT id_friend 
                              FROM table_friend 
                             WHERE id_user = '.q($_SESSION['id_user']));
while(!$rsFriends->EOF) {
    $friends[] = $rsFriends->fields['id_friend'];
    $rsFriends->MoveNext();
}
echo implode(',',$friends);
link|improve this question

6  
Keep in mind that "optimal" is contextual. One person may need to reduce load on their app server, the other on their database server. – NickC May 10 '11 at 22:51
3  
This would depend on your server configuration and the load and capacity of both your database and application servers. If you just want to see which is faster, test it! – Michael Mior May 10 '11 at 22:52
@Renesis: True, but the database will scale large loads better than PHP/etc. The question itself is relatively moot if PHP and the MySQL instance are on the same box. – OMG Ponies May 10 '11 at 22:53
Exactly, both run in the same server. I need to know which would take less work to the cpu. – andufo May 10 '11 at 22:58
@OMG Really? That's definitely an interesting question, I can't imagine PHP doing a worse job of receiving an N * avg(idlength) length string than N integers from the database. – NickC May 10 '11 at 23:06
show 4 more comments
feedback

3 Answers

up vote 4 down vote accepted

You should probably know that the correct ("most optimal") choice is going to be a factor of many variables:

  1. Your database and application hardware.
  2. The size of your data
  3. What load is already like on database and application servers.
  4. Indexes and other things that may affect query execution plan on your dataset
  5. How you actually want to use the data.
  6. Network latency between app server and database server

But you can definitely analyze the program flow to help you arrive at an answer:

Imploding in PHP:

  1. Execute a select query returning ALL friend IDs
  2. Return every single ID to your application.
  3. Build string in PHP as you read them from the result.

Pros:

  • Flexibility in using raw IDs if you actually need them (meaning — if you go with creating the string in MySQL, but post-process it in PHP, the expensive post-process operations will likely negate benefit seen from bypassing PHP in the string-compilation stage)
  • IDs could be (are?) returned to your application as numbers, not strings (1234567890 is 10 bytes ASCII, 4 bytes as a 32-bit integer)

Imploding in MySQL:

  1. Execute an aggregate query
  2. Build a string as it aggregates the results
  3. Return one single string to your application
  4. Output that string

Pros:

  • Might use less memory on the database server for large datasets
  • Can't think of much else. As soon as you need anything but a big concatenated string, this solution is definitely sub-optimal.
link|improve this answer
Flexibility does not mean performance. Only with the smallest data sets, will PHP and the database perform equally. – OMG Ponies May 10 '11 at 23:35
@OMG - Updated to clarify meaning of including "flexibility" – NickC May 10 '11 at 23:37
Not even close... Familiarity with code != application performance – OMG Ponies May 10 '11 at 23:40
@OMG - Elaborate? – NickC May 10 '11 at 23:40
Elaborate what? You're making statements with no basis in fact, just your belief. If you don't know, don't stick your neck out. – OMG Ponies May 10 '11 at 23:42
show 2 more comments
feedback

Per the comments, optimal is heavily depended on the context. With that said, my philosophy is: if the database can do it, let it.

Specifically for your case, if you don't analyze or manipulate the results - meaning this is strictly to join all records together for output - then I definitely vote database.

link|improve this answer
feedback

What's probably most worth optimizing here is developer time and effort, for implementation and maintenance. The difference in CPU cycles (as a proportion of the total work being done) is most likely trivial. I suggest you do it whichever way you can write, test, and support most easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.