The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DynGig::Automata::EZDB::Exclude - Extends DynGig::Util::EZDB.

SCHEMA

alpha INTEGER NOT NULL,
omega INTEGER NOT NULL,
key TEXT NOT NULL,
value TEXT,
PRIMARY KEY ( key )

SYNOPSIS

See DynGig::Util::EZDB for other methods.

my $table = 'table1';
my $start = time;
my $end = $start + 3600;

$db->set( $table, $start, $end, 'key1', 'value1' );

$db->get( $table, time );
$db->get( $table );

$db->expire( $table, time );
$db->expire( $table );

NOTE

See DynGig::Automata