From: "headius (Charles Nutter)" Date: 2012-10-27T15:51:45+09:00 Subject: [ruby-core:48455] [ruby-trunk - Feature #905] Add String.new(fixnum) to preallocate large buffer Issue #905 has been updated by headius (Charles Nutter). mame: I do not understand how there's any way Linux would be different from any other platform. If there's no room in contiguous memory to expand a pointer, the data must be moved elsewhere in memory. Am I missing something? ---------------------------------------- Feature #905: Add String.new(fixnum) to preallocate large buffer https://bugs.ruby-lang.org/issues/905#change-31782 Author: headius (Charles Nutter) Status: Feedback Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: Target version: next minor =begin Because Strings are used in ruby as arbitrary byte buffers, and because the cost of growing a String increases as it gets larger (especially when it starts small), String.new should support a form that takes a fixnum and ensures the backing store will have at least that much room. This is analogous to Array.new(fixnum) which does the same thing. The simple implementation of this would just add a Fixnum check to the String.new method, and the result would be an empty string with that size buffer. This would allow heavy string-appending algorithms and libraries (like ERb) to avoid doing so many memory copies while they run. =end -- http://bugs.ruby-lang.org/