in reply to storing a qr// compiled regexp in a database?

You may try to use DB_File for hash with regexes store/retrieve. Maybe it'll gain perfomance.
  • Comment on Re: storing a qr// compiled regexp in a database?

Replies are listed 'Best First'.
Re^2: storing a qr// compiled regexp in a database?
by diotalevi (Canon) on Sep 18, 2005 at 03:18 UTC
    The regexps will be stringified (and thus not "compiled") once they are stored into the DB_File database. You cannot store the object as a compiled regexp inside a DB_File or any other on-disk database.