vote up 0 vote down star

Anyone has experience measuring glibc regexp functions? Are there any generic tests I need to run to make such a measurements (in addition to testing the exact patterns I intend to search)?

Thanks.

flag

Do you want to measure expression compilation time? Matching time? Both? Real-time? O()-time? – Aiden Bell May 19 at 15:05
Mostly I am interested in matching time. I'd like to know whether I can switch from plain C matching function to regexps to analyze network packets without delaying them too much. – Jack May 19 at 15:29

1 Answer

vote up 1 vote down

Regular expression performance depends much on which regular expression you're using and which data you're applying it to. There's little point in just benchmarking a bunch of regular expressions. You have to compare actual code using a regex and your actual plain C alternative on your actual data.

As a rule of thumb, I'd say that if you already have properly functioning procedural code to do the text matching you need, just leave that in place. If you don't have that code yet, I recommend to start with regexes as you'll save yourself much development time (assuming you're familiar with regexes). You can probably write procedural code that is faster than the equivalent regex, but the difference isn't going to be dramatic. The effort of writing and maintaining the procedural code will be significantly higher than using a regex.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.