The storable tag has no wiki summary.
9
votes
2answers
237 views
Storable.pm - corrupt when saving to non-truncated file
In my production environment we have had what we believe to be a
corrupt storable hash, created by Storable.pm. I am unable to replicate the behaviour in Dev, which has made it hard to diagnose ...
6
votes
1answer
115 views
Store a Moose object that has a PDL as an attribute
I am new to Moose and doing quite well until I have hit a snag using a PDL as a property. I want to be able to write an object to a file (I have been using use MooseX::Storage; with Storage('io' => ...
5
votes
2answers
123 views
Optimization suggestions when writing storable vector definition for union struct
I wrote a storable vector instance for the data type below (original question here):
data Atoms = I GHC.Int.Int32 | S GHC.Int.Int16
The code for defining those instances for Storable vector is ...
4
votes
1answer
146 views
Writing storable instance for CString with O(1) function to get total byte length
I am trying to write a storable vector instance for CString (null-terminated C chars in my case). The storable instance will store the pointers that the CString is (Ptr CChar). So, length of the ...
3
votes
3answers
217 views
Can Storable store to the DATA filehandle?
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 ...
3
votes
2answers
1k views
How can I use 32-bit Perl to thaw something frozen with 64-bit Storable?
I'm trying to thaw a database BLOB that was frozen using Storable on a 64-bit Solaris (production) machine. When I try to thaw on a 32-bit Windows (development) PC I receive "Byte order is not ...
2
votes
2answers
183 views
What is the Storable module used for?
I am having a hard time understanding what Storable does.
I know that it "stores" a variable into your disk, but why would I need to do that? What would I use this module for, and how would I do it?
2
votes
2answers
309 views
Alternatives to storing Moose object using Apache::Session with CODE references
I have a Moose class that i would like to store using Apache::Session::File.
However, Apache::Session::File by default will not store it and instead i get the error message:
(in cleanup) Can't ...
2
votes
4answers
850 views
Can a PHP script unserialize a Storable file created with Perl?
Can a PHP script unserialize a Storable file created with Perl?
1
vote
1answer
42 views
Send Data packages over UDP
I'm trying to send a scalar value over socket which I have got with nfreeze from storable.
Step by step:
I get the scalar
$serializedHash = nfreeze \%hash;
I want to send it over socket ...
1
vote
1answer
53 views
Passing mixed storable vectors to a C function
I have a list of vectors - the set of types is known and fixed - let us say, CInt and CChar. The list is unknown at compile time - the composition will be determined from a configuration file at ...
1
vote
1answer
98 views
Defining Storable for Recursive Data Structure Involving Vectors
I have a data structure of the form below (V is Data.Storable.Vector):
data Elems = I {-# UNPACK #-} !GHC.Int.Int32
| S {-# UNPACK #-} !GHC.Int.Int32 {-# UNPACK #-} !(Ptr CChar)
...
1
vote
1answer
111 views
Defining storable instance for union data types
How do you define the storable vector instance for a data type like below (composed from GHC primitive types):
data Atoms = I GHC.Int.Int32|S GHC.Int.Int16 -- define a union data type
I checked ...
0
votes
1answer
94 views
Deep cloning an object and Log4perl
I am using Storable's dclone() to create copies of various complex objects, which are self-logging with Log4perl loggers attached. Storable complains when it encounters the logger object because it ...
0
votes
1answer
124 views
How do I change the default file permissions in Storable?
Can I somehow change the default file permissions when using the store function from Storable?
0
votes
1answer
518 views
Problem storing a hash in DB using Storable::nfreeze in Perl
I want to insert a hash in the db using Storable::nfreeze but the data is not inserted properly.
My code is as follows:
%rec=();
$rec{'name'} = 'my name';
$rec{'address'} = 'my address';
my $order1 ...