ArangoDB
view release on metacpan or search on metacpan
lib/ArangoDB/Collection.pm view on Meta::CPAN
=head2 is_loaded()
Return true if status of the collection is 'loaded'.
=cut
sub is_loaded {
$_[0]->{status} == LOADED;
}
=pod
=head2 is_being_unloaded()
Return true if status of the collection is 'being unloaded'.
=cut
sub is_being_unloaded {
$_[0]->{status} == BEING_UNLOADED;
}
=pod
=head2 is_deleted()
Return true if status of the collection is 'deleted'.
=cut
sub is_deleted {
$_[0]->{status} == DELETED;
}
=pod
=head2 is_corrupted()
Return true if status of the collection is invalid.
=cut
sub is_corrupted {
return $_[0]->{status} >= CORRUPTED;
}
=pod
=head2 figure($type)
Returns number of documents and additional statistical information about the collection.
$type is key name of figures.The key names are:
=over 4
=item count
The number of documents inside the collection.
=item alive-count
The number of living documents.
=item alive-size
The total size in bytes used by all living documents.
=item dead-count
The number of dead documents.
=item dead-size
The total size in bytes used by all dead documents.
=item dead-deletion
The total number of deletion markers.
=item datafiles-count
The number of active datafiles.
=item datafiles-fileSize
The total filesize of datafiles.
=item journals-count
The number of journal files.
=item journals-fileSize
The total filesize of journal files.
=item journalSize
The maximal size of the journal in bytes.
=back
=cut
sub figure {
my ( $self, $type ) = @_;
my $res = $self->_get_from_this('figures');
if ( defined $type ) {
return $res->{count} if $type eq 'count';
return $res->{journalSize} if $type eq 'journalSize';
my ( $area, $name ) = split( '-', $type );
if ( exists $res->{figures}{$area} ) {
return $res->{figures}{$area} unless defined $name;
return $res->{figures}{$area}{$name};
}
}
else {
return $res->{figures};
}
return;
}
=pod
=head2 wait_for_sync($boolean)
( run in 0.787 second using v1.01-cache-2.11-cpan-df04353d9ac )