#!/usr/bin/perl use strict; use warnings; my @objs; for my $i (1 .. 1_000_000) { # push @objs, { id => $i, name => "Object of class", number => int rand 10 }; # push @objs, bless { id => $i, name => "Object of class", number => int rand 10 }, 'My::Class'; # push @objs, [$i, 'Object of class', int rand 10]; push @objs, bless [$i, 'Object of class', int rand 10], 'My::Class'; } print `ps -v | grep ^$$`;