Questions tagged [kiokudb]
6 questions
6
votes
2 answers
KiokuDB on Windows
I wonder if anybody has been able to successfully use KiokuDB on Windows. Having ActivePerl 5.12.2, I did not find it pre-compiled in ppm repositories. Using cpan, it stopped during testing File::NFSLock. I was able to install it with notest,…

bvr
- 9,687
- 22
- 28
6
votes
2 answers
How do I reduce number of redundant requests with mod_perl properly?
In a fairly big legacy project, I've refactored several hairy modules into Moose classes. Each of these modules requires database access to (lazy) fetch its attributes. Since those objects are used pretty heavily, I want to reduce the number of…

Nikolai Prokoschenko
- 8,465
- 11
- 58
- 97
4
votes
1 answer
Is there a reason I should NOT serialize my (Moose) objects using Storable or YAML?
I have a few Moose objects and some other simple hash objects (hashes, arrays) I'd like to serialize.
At first, I used a simple
my $obj_store_file = nstore($obj);
and
my $obj = retrieve($obj_store_file);
This worked well.
Later, I found about…

David B
- 29,258
- 50
- 133
- 186
3
votes
1 answer
Which KiokuDB backend is suitable for my serialization needs?
I use KiokuDB to store a couple of Moose objects and a couple of simple array structures (hashes and arrays).
I do not need any fancy searches, transactions etc., simple the ability to fetch (lookup) an object. Also, as soon as I'm done creating the…

David B
- 29,258
- 50
- 133
- 186
2
votes
1 answer
How should I copy objects between two KiokuDB dirs?
I would like to make sure I get KiokuDB's scope concept correctly.
Suppose I would like to load an object from db1 and store it in db2. Must I have both scopes 'open' at the same time?

David B
- 29,258
- 50
- 133
- 186
0
votes
1 answer
What are 'weak references' in KiokuDB?
What exactly are the weak references that KiokuDB tutorial mentions?
How do they differ from 'normal' references?

David B
- 29,258
- 50
- 133
- 186