I was curious if using Storable's store_fd and fd_retrieve would allow me to store a data structure into a program's own DATA filehandle. I realize this isn't Best Practice, I'm just curious if it'd work, my quick attempts to try it don't seem to work.
|
feedback
|
|
I'm not sure why you'd want to do that, but you can fake it. You should try to avoid that though. Just for giggles, you could open a filehandle, read lines from
| |||
|
feedback
|
|
However, if you are talking about you storing data by typing it in there, only to read it from a script, then the binary problem still confronts you. So, it's better to go with YAML or JSON for persistence. I know that YAML will handle the blessing when retrieving the data from DATA. | |||
|
feedback
|
|
It's not possible in ordinary conditions: $ cat write-data
But you can create extraordinary conditions:
On Windows, you'll get a warning on the | ||||
|
feedback
|
DATAcannot be written to? – Danny Feb 6 '10 at 0:57