I have a Perl script that crunches a lot of data. There are a bunch of string variables that start small but grow really long due to the repeated use of the dot (concatentation) operator. Will growing the string in this manner result in repeated reallocations? If yes, is there a way to pre-allocate a string?
|
|
Alternate suggestion that will be much easier to cope with: |
||
|
|
|
Yes, Perl growing a string will result in repeated reallocations. Perl allocates a little bit of extra space to strings, but only a few bytes. You can see this using Devel::Peek. This reallocation is very fast and often does not actually copy the memory. Trust your memory manager, that's why you're programming in Perl and not C. Benchmark it first! You can preallocate arrays with
Or if you want to get into XS you can call chaos' suggestion to use an array and then join it all together will use more than double the memory. Memory for the array. Memory for each scalar allocated for each element in the array. Memory for the string held in each scalar element. Memory for the copy when joining. If it results in simpler code, do it, but don't think you're saving any memory. |
||
|
|
|
|
Perl's strings are mutable, so appending to a string does NOT incur string duplication penalty. You can try all you want to find a "faster" way, but this smells really bad of premature optimization. For an example, I whipped up a class that abstracted away the hard work. It works pefectly, but its, for all its goofy tricks, really slow. Here's the result:
Yes, that's right, Perl is 1200% faster than what I thought was a respectable implementation. Profile your code and find what the real problems are, don't try optimising stuff that isn't even a known problem.
|
||||
|
|
|
i would go the array/join way
and then |
|||
|
|
|
I don't know specifically how Perl strings are implemented but a pretty good guess is that it's constant amortized time. This means that even if you do find a way to pre-allocate your string chances are that the combined time it will save for all the scripts users will be less than the time you spent asking this question on stackoverflow. |
||
|
|
|
|
Growing a scalar via concatenation will result in memory allocation, though as Schwern points out, this may not happen with every concatenation and may not actually cause a performance problem. See this PerlMonks discussion. You can use Convert::Scalar to preallocate memory for a scalar.
|
|||
|
|
|
|
Yes, pre-extending strings that you know will grow is a good idea. You can use the 'x' operator to do this. For example, to preallocate 1000 spaces: $s = " " x 1000: |
||||||||||||||
|
