Chad,(posted 9026 days ago)I've tried using RLIKE before, but it's considerably slower than LIKE. That's what's stopped me from fixing the clone listing bug until now. I need to do some testing to determine whether it's quicker to say
short_name RLIKE '(pacman|puckman)'
or
short_name = 'pacman' or shortname = 'puckman'
I imagine the second one would be quicker, and would require some changes to the Python scripts.
Chris.