debian man page for kiokudb::role::immutable

Query: kiokudb::role::immutable

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

KiokuDB::Role::Immutable(3pm)				User Contributed Perl Documentation			     KiokuDB::Role::Immutable(3pm)

NAME
KiokuDB::Role::Immutable - A role for objects that are never updated.
SYNOPSIS
with qw(KiokuDB::Role::Immutable);
DESCRIPTION
This is a role for objects that are never updated after they are inserted to the database. The object will be skipped entirely on all update/store operations unless it is being collapsed for the first time, and its child objects will not be updated unless they are found while collapsing another object. This means that: my $immutable = $kiokudb->lookup($id); $immutable->child->name("foo"); $kiokudb->update($immutable); will not work, you need to update the child directly: $kiokudb->update($immutable->child); perl v5.12.4 2010-10-11 KiokuDB::Role::Immutable(3pm)
Related Man Pages
kiokudb::backend(3pm) - debian
kiokudb::backend::role::txn::memory(3pm) - debian
kiokudb::linker(3pm) - debian
kiokudb::typemap::entry::callback(3pm) - debian
kiokudb::typemap::entry::mop(3pm) - debian
Similar Topics in the Unix Linux Community
How can I do this in VI editor?
Is UNIX an open source OS ?
Detecting unused variables...
One instance of comparing grep and awk
How to copy a column of multiple files and paste into new excel file (next to column)?