Project

General

Profile

Actions

Feature #12788

closed

Improve String lstrip and strip performance

Added by asterite (Ary Borenszweig) over 7 years ago. Updated over 7 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:77392]

Description

This adds a fast path for lstrip_offset in the case of single byte optimizable strings. This optimization already exists in rstrip_offset but I noticed it was missing in rstrip.

I made sure to only remove ascii space, not '\0', to preserve backwards compatibility. (rstrip seems to remove '\0', but not lstrip)

A benchmark:

s = " " * 10_000_000
time = Time.now
p s.lstrip
p s.strip
puts Time.now - time

s = " " * 100_000_000
time = Time.now
p s.lstrip
p s.strip
puts Time.now - time

Times before: 0.195159 and 1.918969
Times after: 0.013684 and 0.143966

So a bit more than 10x faster.

By the way, Akira Matsuda-san gave a really nice closing keynote in RubyConf Brasil yesterday that encouraged all of us to use Ruby and contribute to it, so here is my first patch :-)


Files

string_lstrip_improvement.patch (685 Bytes) string_lstrip_improvement.patch asterite (Ary Borenszweig), 09/26/2016 01:02 AM
Actions #1

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

  • Status changed from Open to Closed

Applied in changeset r56250.


string.c: fast path of lstrip_offset

  • string.c (lstrip_offset): add a fast path in the case of single
    byte optimizable strings, as well as rstrip_offset.
    [ruby-core:77392] [Feature #12788]

Updated by asterite (Ary Borenszweig) over 7 years ago

Thank you Nobu-san for reviewing and accepting this. Matsuda-san also mentioned a "patch monster" in his talk, I think now I know what he means :-)

Updated by matsuda (Akira Matsuda) over 7 years ago

Ary Borenszweig wrote:

Thank you Nobu-san for reviewing and accepting this. Matsuda-san also mentioned a "patch monster" in his talk, I think now I know what he means :-)

🤘🏻

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0