vote up 6 vote down star
2

Each time a python file is imported that contains a large quantity of static regular expressions, cpu cycles are spent compiling the strings into their representative state machines in memory.

a = re.compile("a.*b")
b = re.compile("c.*d")
...

Question: Is it possible to store these regular expressions in a cache on disk in a pre-compiled manner to avoid having to execute the regex compilations on each import?

Pickling the object simply does the following, causing compilation to happen anyway:

>>> import pickle
>>> import re
>>> x = re.compile(".*")
>>> pickle.dumps(x)
"cre\n_compile\np0\n(S'.*'\np1\nI0\ntp2\nRp3\n."

And re objects are unmarshallable:

>>> import marshal
>>> import re
>>> x = re.compile(".*")
>>> marshal.dumps(x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: unmarshallable object
flag

8 Answers

vote up 9 vote down check

Is it possible to store these regular expressions in a cache on disk in a pre-compiled manner to avoid having to execute the regex compilations on each import?

Not easily. You'd have to write a custom serializer that hooks into the C sre implementation of the Python regex engine. Any performance benefits would be vastly outweighed by the time and effort required.

First, have you actually profiled the code? I doubt that compiling regexes is a significant part of the application's run-time. Remember that they are only compiled the first time the module is imported in the current execution -- thereafter, the module and its attributes are cached in memory.

If you have a program that basically spawns once, compiles a bunch of regexes, and then exits, you could try re-engineering it to perform multiple tests in one invocation. Then you could re-use the regexes, as above.

Finally, you could compile the regexes into C-based state machines and then link them in with an extension module. While this would likely be more difficult to maintain, it would eliminate regex compilation entirely from your application.

link|flag
vote up 2 vote down

Note that each module initializes itself only once during the life of an app, no matter how many times you import it. So if you compile your expressions at the module's global scope (ie. not in a function) you should be fine.

link|flag
vote up 0 vote down

If the pickling process works for regular expressions, then you can do what you want. You need to run the regex compilation code at least one, of course, to create the compiled version. However, once that's done and you pickle the compiled regex, you can have your module initialization code read the objects from file. I imagine you could simply have your module init code make a check for the stored version: if it exists then load it, otherwise recompile them.

However, I would surprised if it was actually cheaper to load the objects from file rather than recompile them. As Toni points out, you only incur the compilation cost once per interpreter instance.

link|flag
vote up 0 vote down

It's possible to place each regex (or group of regexs) into a separate file and then dynamically import the file that you need using the imp module. I doubt that it scales very well but it could be what you need.

link|flag
vote up 0 vote down

The shelve module appears to work just fine:


import re
import shelve
a_pattern = "a.*b"
b_pattern = "c.*d"
a = re.compile(a_pattern)
b = re.compile(b_pattern)

x = shelve.open('re_cache')
x[a_pattern] = a
x[b_pattern] = b
x.close()

# ...
x = shelve.open('re_cache')
a = x[a_pattern]
b = x[b_pattern]
x.close()

You can then make a nice wrapper class that automatically handles the caching for you so that it becomes transparent to the user... an exercise left to the reader.

link|flag
The shelve module uses pickle internally. The patterns would still be re-compiled on loading them from the shelf. – John Millikin Sep 15 '08 at 19:19
vote up 0 vote down

Hum,

Doesn't shelve use pickle ?

Anyway, I agree with the previous anwsers. Since a module is processed only once, I doubt compiling regexps will be your app bottle neck. And Python re module is wicked fast since it's coded in C :-)

But the good news is that Python got a nice community, so I am sure you can find somebody currently hacking just what you need.

I googled 5 sec and found : http://home.gna.org/oomadness/en/cerealizer/index.html.

Don't know if it will do it but if not, good luck in you research :-)

link|flag
vote up 0 vote down

Open /usr/lib/python2.5/re.py and look for "def _compile". You'll find re.py's internal cache mechanism.

link|flag
vote up 0 vote down

First of all, this is a clear limitation in the python re module. It causes a limit how much and how big regular expressions are reasonable. The limit is bigger with long running processes and smaller with short lived processes like command line applications.

Some years ago I did look at it and it is possible to dig out the compilation result, pickle it and then unpickle it and reuse it. The problem is that it requires using the sre.py internals and so won't probably work in different python versions.

I would like to have this kind of feature in my toolbox. I would also like to know, if there are any separate modules that could be used instead.

link|flag

Your Answer

Get an OpenID
or

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