in reply to Making Storable Work
Especially
causes problems because you're retrieving a hash reference ($docs) which you're using as a hash (%docs or $docs{1}) later on. use strict catches this.$docs = retrieve('/info/docs'); print $docs{1};
Also, checking the result of store() makes sure it's really doing what you expect it to do.
|
|---|