shogo82148 / Redis-Fast

fast perl binding for Redis database
https://metacpan.org/release/Redis-Fast
Other
25 stars 21 forks source link

Fix inheriting from Tie::StdHash #60

Closed shogo82148 closed 7 years ago

shogo82148 commented 7 years ago

According to the document of Tie::Hash, the following code is correct

package NewStdHash;
require Tie::Hash;

@ISA = qw(Tie::StdHash);