Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3212880
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T14:53:03+00:00 2026-05-17T14:53:03+00:00

I have been told that disabling backreferences in perl improves performance (provided you’re not

  • 0

I have been told that disabling backreferences in perl improves performance (provided you’re not using them), and that if you don’t use any backreferences perl will do this by itself.

Now I have a perl script with a large number of regex in it and only a single one uses a backreference and I would like to know the following:

  • Given I have a very large number of regex (let’s assuming most of my processing time is regex) does disabling back references a significant performance improvement? or are there criteria which I can use to know if this is the case?
  • Is there a way I can disable backreferences once at the beginning and only reenable it when I need it (I know about (?:, but I don’t want to have to add it to every grouping)?
  • Would scoping allow for perl to optimize this backreferencing behavior for me (ie. does a sub or an eval change whether perl turns off backreferencing for things outside of it)?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T14:53:03+00:00Added an answer on May 17, 2026 at 2:53 pm

    Using capturing parentheses only penalizes regular expressions that use them, so use them where you need to capture, but use non-capturing parens (?:...) when all you need is grouping.

    Using any of the global match variables

    $` $& $'
    

    imposes a performance penalty on all regular expressions, so avoid using them if at all possible. (But once you do, go nuts! You’ve already paid the price.) There’s no way to turn this on and off. Once Perl detects that they’re used anywhere (even in third-party modules you may use) the feature is turned on.

    As of Perl 5.10.0, there are alternatives for the global match variables that only penalize regular expressions that use them. If you add the /p modifier to a particular regular expression you can then use

    ${^PREMATCH} ${^MATCH} ${^POSTMATCH}
    

    instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been told that there is a performance difference between the following code
We have been told that we have to use a piece of software called
This is a (hopefully) really simple question - I have been told recently that
I have been told and I'm not sure I believe this: Removing white space
I am a programmer at a financial institute. I have recently been told to
Have been looking at the MVC storefront and see that IQueryable is returned from
We have been using CruiseControl for quite a while with NUnit and NAnt. For
Have been studying the file system related classes of Adobe AIR 1.5, but so
I have been experimenting with woopra.com A web analytics tool. Which requires a piece
I have been working on a web services related project for about the last

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.