[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Compiled regexp?
From: |
Tom Tromey |
Subject: |
Re: Compiled regexp? |
Date: |
Thu, 31 Jan 2013 08:55:36 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.2.92 (gnu/linux) |
>>>>> "Stefan" == Stefan Monnier <address@hidden> writes:
Stefan> If we ever try to do something to avoid the cost of re-compiling
Stefan> a regexp, I'd expect that we'd provide a way to have explicit access to
Stefan> compiled regexps (with a `regexp-compile' function, the result of which
Stefan> would be accepted by re-search-forward as an alternative to a string).
Back when I did some emacs profiling, regexp compilation didn't show up
in the top 5. Regexp matching did, though. I wasn't specifically
looking at regexp performance, though, so I didn't try to isolate the
effects of the compiled-regexp cache.
Tom