Hi all,

I am using DBIx::Class to work with DB. Works fine, the development is really quick. Now I need to lock a table - but don't know how. I didn't find any documentation or example on this. Is it possible?

I am trying to do something like this:

# lock Table here my $obj_rs = $schema->resultset("Table")->search({ col1 => $val }); my $obj = $obj_rs->next; my $old_val = $obj->col2; my $new_val = maybe_expensive_computation($old_val); $obj->col2($new_val); $obj->update; # ... fetch and update some more rows # unlock Table here

This code could be run in multiple processes in parallel. I need the maybe_expensive_computation() to be run by 1 process at most because it can be influenced by another process running the same function. If more than one process tries to do the computation, only one should "get in", others should wait.

I can solve all of this with hand-written SQL and DBI (LOCK, few SELECTs and UPDATEs, UNLOCK), but I'd rather use DBIx::Class.

So the question I'd like to ask: how to lock a table while accessing DB with DBIx::Class?

Thank you.

ico


In reply to DBIx::Class and locking tables by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.