I try to work with MojoX::Redis and I can`t understand how catch result in a variable.
In docs used "print"
$redis->get(key => sub {
my ($redis, $res) = @_;
print "Value of ' key ' is $res->[0]\n";
})
It worked, but useless. How I can assign result to a variable in "main" program?
PS. Indeed I really don`t understand asynchronous paradigm on this part.