Mercurial > pub > Impl
view _test/temp.pl @ 332:04a093f0a5a6
IMPL::Web::Application refactoring: resources are created per client request
author | cin |
---|---|
date | Sun, 09 Jun 2013 21:48:57 +0400 |
parents | 8d36073411b1 |
children | f116cd9fe7d9 |
line wrap: on
line source
#!/usr/bin/perl use strict; { package Foo; use IMPL::declare { base => [ 'IMPL::Object::Disposable' => undef ] }; } use Time::HiRes qw(gettimeofday tv_interval); use IMPL::lang; use IMPL::require { AutoDispose => 'IMPL::Object::AutoDispose', DBSchema => 'IMPL::SQL::Schema' }; my $real = DBSchema->new( name => 'simple', version => 1); my $proxy = AutoDispose->new($real); print typeof($proxy),"\n"; my $t = [gettimeofday]; for (1..1000000) { $proxy->name; } print "proxy: ",tv_interval($t,[gettimeofday]),"\n"; $t = [gettimeofday]; for (1..1000000) { $real->name; } print "real: ",tv_interval($t,[gettimeofday]),"\n";