http://www.perlmonks.org?node_id=11148966


in reply to Re: Efficient regex search on array table
in thread Efficient regex search on array table

Most people would agree with you. There are several reasons I do not prefer this route:
  1. I will be using, or attempting to use, the full potential of a Perl regex for the query, and converting this to an SQL query would be quite complicated, perhaps impossible (at least for me).
  2. Because users will be allowed to enter their own regex for the query, not running their regex on the SQL database gives me a Taint-like layer of protection, as there is zero chance of database manipulation, and nothing will be done/executed on the server with the query output.
  3. I trust Perl over MySQL/MariaDB to securely, reliably, and efficiently meet my needs.

Blessings,

~Polyglot~

  • Comment on Re^2: Efficient regex search on array table