in reply to Regular expression matching or eq, which is faster?

A quick benchmark indicates that if ($value =~ /string/) is tied with if ($value eq 'string')

with if ($value =~ /^string$/) taking twice as long