A tied variable has its accesses mediated by a Perl object.
For example, if the scalar $s is tied to the object $o, then
print $s; print $o->FETCH();
$s = 119; $o->STORE(119);