How can I know how many entries are in a hash?

If you mean how many keys, then all you have to do is take the scalar sense of the keys function:

	$num_keys = scalar keys %hash;

In void context it just resets the iterator, which is faster for tied hashes.