How to store an inner nested hash in perl -


i have perl nested hash. when try store using storable module, inner hash, i'm getting error "not reference". example:

store($outer_hash->{$id}, $filename); 

and how should retrieve back? next line right way?

$outer_hash->{$id} = retrieve($filename); 


Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -