Or: Should I optimize my string-operations in PHP? I tried to ask PHP's manual about it, but I didn't get any hints to anything.
|
|
PHP already optimises it - variables are assigned using copy-on-write, and objects are passed by reference. In PHP 4 it doesn't, but nobody should be using PHP 4 for new code anyway. |
|||||||||||||||
|
|
One of the most essential speed optimization techniques in many languages is instance reuse. In that case the speed increase comes from at least 2 factors: 1. Less instantiations means less time spent on construction. 2. The less the amount of memory that the application uses, the less CPU cache misses there probably are. For applications, where the speed is the #1 priority, there exists a truly tight bottleneck between the CPU and the RAM. One of the reasons for the bottleneck is the latency of the RAM. The PHP, Ruby, Python, etc., are related to the cache-misses by a fact that even they store at least some (probably all) of the run-time data of the interpreted programs in the RAM. String instantiation is one of the operations that is done pretty often, in relatively "huge quantities", and it may have a noticeable impact on speed. Here's a run_test.bash of a measurement experiment:
Here are the ./string_instantiation_speedtest.php and the measurement results:
My conclusion from this experiment and one other experiment that I did with Ruby 1.8 is that it makes sense to pass string values around by reference. One possible way to allow the "pass-strings-by-reference" to take place at the whole application scope is to consistently create a new string instance, whenever one needs to use a modified version of a string. To increase locality, therefore speed, one may want to decrease the amount of memory that each of the operands consumes. The following experiment demonstrates the case for string concatenations:
For example, if one assembles HTML pages that contain considerable amount of text, then one might want to think about the order, how different parts of the generated HTML are concated together. |
||||
|
|
|
A quick google would seem to suggest that they are mutable, but the preferred practice is to treat them as immutable. |
|||
|