KiokuDB::LiveObjects(3pm) | User Contributed Perl Documentation | KiokuDB::LiveObjects(3pm) |
KiokuDB::LiveObjects - Live object set tracking
version 0.57
$live_objects->insert( $entry => $object ); $live_objects->insert( $id => $object ); my $id = $live_objects->object_to_id( $object ); my $obj = $live_objects->id_to_object( $id ); my $scope = $live_objects->new_scope;
This object keeps track of the set of live objects, their associated IDs, and the storage entries.
If true, when the last known scope is removed but some objects are still live they will be removed from the live object set.
Note that this does NOT prevent leaks (memory cannot be reclaimed), it merely prevents stale objects from staying loaded.
If any objects are leaked (see "clear_leaks") then the this can be used to report them, or to break the circular structure.
When an object is provided the "leaked_objects" method is called. The coderef is simply invoked with the objects as arguments.
Triggered after "clear_leaks" causes "clear" to be called.
For example, to break cycles you can use Data::Structure::Util's "circular_off" function:
use Data::Structure::Util qw(circular_off); $dir->live_objects->leak_tracker(sub { my @leaked_objects = @_; circular_off($_) for @leaked_objects; });
When true (the default), KiokuDB::Entries loaded from the backend or created by the collapser are kept around.
This results in a considerable memory overhead, so it's no longer required.
The objects must already be in the live object set.
This method is called on a successful transaction commit.
This is the scope into which newly registered objects are pushed.
This removes all objects and entries, and can be useful in the case of leaks (to prevent false positives on lookups).
Note that this does not actually break the circular structures, so the leak is unresolved, but the objects are no longer considered live by the KiokuDB instance.
Also calls "detach_scope", and calls "KiokuDB::LiveObjects::Scope/clear" on the scope itself.
This prevents "push" from being called on this scope object implicitly anymore.
Yuval Kogman <nothingmuch@woobling.org>
This software is copyright (c) 2014 by Yuval Kogman, Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-05-23 | perl v5.34.0 |