AnyEvent-KVStore

 view release on metacpan or  search on metacpan

lib/AnyEvent/KVStore.pm  view on Meta::CPAN

}

has module => (is => => 'ro', isa => Str, required => 1);

=head2 config

This is the configuratoin to connect to the driver.

=cut

has config => (is => 'ro', isa => HashRef, required => 1);

=head1 SUBROUTINES/METHODS

=head2 new($args or %args)

Returns a new kvstore object for use in your application.  Note that the actual
connection is lazy, and therefore is not even made until use.  This uses
standard Moo/Moose constructor syntax.

=head2 list($prefix)

lib/AnyEvent/KVStore/Hash.pm  view on Meta::CPAN


The prefixes are checked and run un order of creation here too.  This may, in
the future, change to be more alphabetically ordered.

=back

This behavior is subect to change.

=cut

has _store    => (is => 'ro', isa => HashRef, default => sub { {} });

has _watches  => (is => 'ro', isa => HashRef, default => sub { {} });

=head1 METHODS

Unless otherwise noted, these do exactly what the documentation in 
C<AnyEvent::KVStore> and C<AnyEvent::KVStore::Driver> suggest.

=head2 read

=head2 exists

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 6.238 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-72ae3ad1e6da )