Which perl module to use for object persistence

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Which perl module to use for object persistence

    folks,

    in our project we are planning to persistently store some objects.
    any recommendations for which modules to use?

    anybody used:
    app-repository at [url]http://cpan.uwinnipeg.ca/dist/App-Repository[/url] or
    object persistence at :
    [url]http://search.cpan.org/~vipul/Object-Persistence-0.92/lib/Persistence/Object/Simple.pm[/url]

    any pointers/suggestions are greately appreciated.

    thanks,
    -badari

    Badari Kakumani Guest

  2. Similar Questions and Discussions

    1. Robot Perl module
      Does anyone know if there is a Robot/Spider Perl module that supports HTTP authentication and HTTPs connections? I know about WWW:Robot and the...
    2. Perl module installation
      Hello, I need to install the libnet module on my SUN server. I downloaded the latest version from the CPAN website and uncompress it on y server....
    3. ExtenderProvider object code persistence
      I using his DefaultButtons control and having the exact same problem. I want to set default buttons for run-time generated conrols but when I try to...
    4. Module Object and sub module function
      Howdy folks, Yet another module question. I'm so close and I've done this but I can't get it to work. I am writing a module that is an...
    5. object persistence
      I instatiate an object first time when an asp.net page loads. But when the page reloads after Post Back, I get an error saying the object does not...
  3. #2

    Default Re: Which perl module to use for object persistence

    "Badari Kakumani" <badarisj@gmail.com> wrote:
    > folks,
    >
    > in our project we are planning to persistently store some objects.
    > any recommendations for which modules to use?
    I have been using Storable for some small things, so no idea if it's ok
    for your project.

    --
    John Small Perl scripts: [url]http://johnbokma.com/perl/[/url]
    Perl programmer available: [url]http://castleamber.com/[/url]
    I ploink googlegroups.com :-)

    John Bokma Guest

  4. #3

    Default Re: Which perl module to use for object persistence

    Hi,

    For my experience, Storable is good for both small and big stuffs. But
    you should take care of 64-bit platform.

    Tom

    Badari Kakumani wrote:
    > folks,
    >
    > in our project we are planning to persistently store some objects.
    > any recommendations for which modules to use?
    >
    > anybody used:
    > app-repository at [url]http://cpan.uwinnipeg.ca/dist/App-Repository[/url] or
    > object persistence at :
    > [url]http://search.cpan.org/~vipul/Object-Persistence-0.92/lib/Persistence/Object/Simple.pm[/url]
    >
    > any pointers/suggestions are greately appreciated.
    >
    > thanks,
    > -badari
    Tom Guest

  5. #4

    Default Re: Which perl module to use for object persistence

    "Badari Kakumani" <badarisj@gmail.com> wrote:
    > folks,
    >
    > in our project we are planning to persistently store some objects.
    > any recommendations for which modules to use?
    What are your requirements for ACID (atomicity, concurrency, isolation, and
    durability)? How many objects, how big, and how often do you want to
    manipulate them?
    >
    > anybody used:
    > app-repository at [url]http://cpan.uwinnipeg.ca/dist/App-Repository[/url] or
    I couldn't get it to install with cpan. It doesn't resolve it's
    dependencies automatically, and I ran into a few manually that I could find
    on CPAN, so I gave up. I also didn't see much discussion of it on the
    web/usenet other than FAIL reports from the CPAN testers and uploads by the
    author. I would consider both of those to be bad signs.
    > object persistence at :
    > [url]http://search.cpan.org/~vipul/Object-Persistence-0.92/lib/Persistence/Obj[/url]
    > ect/Simple.pm
    Haven't used or attempted to use it.
    >
    > any pointers/suggestions are greately appreciated.
    I like Storable for small thing (or large things that fit in memory and can
    be kept a while before writing them back out), and I really like DBM::Deep
    for large. I haven't used them where ACIDity was necessary, and suspect
    they are somewhat lacking there.

    Xho

    --
    -------------------- [url]http://NewsReader.Com/[/url] --------------------
    Usenet Newsgroup Service $9.95/Month 30GB
    xhoster@gmail.com Guest

  6. #5

    Default Re: Which perl module to use for object persistence

    Would an object-relational mapper like DBIx::Class be appropriate?

    Are you aware of the Perl object-oriented Persistance mailing list
    (poop.sf.net).

    metaperl@gmail.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139