我正在用
编写一个小应用程序在我的申请中,我需要做以下事情;
以下是从第2步开始的一些示例代码
#step 2
my $device = $device_rs->create(
{
devicename => $deviceName,
objects => \@objects
object_groups => \@objectgroups,
}
);
#step 3
my $lastogid = $db->resultset('ObjectGroup')->get_column('objectgroupid')->max;
my $lastobid = $db->resultset('Object')->get_column('objectid')->max;
my $obgcount = scalar(@objectgroups);
my $objcount = scalar(@objects);
my $ogoffset = $lastogid - $obgcount;
my $oboffset = $lastobid - $objcount;
#now increment the object/group ids by the offset which will be inserted into the many- many table
foreach my $hash (@childobjects) {
$hash->{'objectgroup_objectgroupid'} += $ogoffset;
$hash->{'object_objectid'} += $oboffset;
}
#step 4 - populate the junction table
$db->resultset('ObjectGroupHasObjects’)->populate(\@childobjects);
现在由于多个线程进行一次,从步骤3获得的值可能不正确(对于当前的“设备”)。
我正试图找到解决这个问题的方法。我现在唯一能想到的就是在步骤2)之前锁定数据库表并在步骤4之后解锁。
如何在DBIx :: Class中执行此操作,这是否可能解决我的问题?
谢谢。
答案 0 :(得分:2)
像
这样的东西$schema->dbh_do("LOCK TABLES names");
...
...
$schema->dbh_do("UNLOCK TABLES");
来源:http://www.perlmonks.org/?node_id=854538
另见:How to avoid race conditions when using the find_or_create method of DBIx::Class::ResultSet?