I wonder if anyone was able to successfully use KiokuDB on Windows. Having ActivePerl 5.12.2, I did not find it precompiled in ppm repositories. Using cpan, he stopped while testing File :: NFSLock . However, I was able to install it using notest.
The simple test below works as documented:
package Person; use Moose; has ['name', 'age'] => (is => 'ro'); package main; use Data::Dump; use KiokuDB; my $dir = KiokuDB->connect("hash"); { my $scope = $dir->new_scope; my $obj = Person->new(name => 'Joe', age => 34); my $data_id = $dir->store($obj); warn $data_id;
Has anyone used it for something more on Windows, say using DBI? Do you think that it is stable enough / enough to be used for a small project?
Please provide at least some details of your type of use, so I have an idea that fits my plans.
windows perl persistence
bvr
source share