This is not related with the original issue. So I will directly reply by another mail.
In addition, the fixed version is released as v0.0.4. So, I closed this ticket.
On 2013-9月-26 木 04:26:32, cumtxhzyy@gmail.com wrote:
Show quoted text> Hi~
> It's me again! May I ask you a question?
> When i add an anyevent timer watcher out of the
> AnyEvent::Digest, I
> found that the machine memory keep growing. Thus I think that there
> is
> something wrong with my program. Since I have no idea about how to
> slove
> it, could you please check my program to discover the crucial reson?
> Thaks
> very much!!!
>
> Code as follows:
>
> #!/usr/bin/perl
> use strict;
> use warnings;
> use AnyEvent;
> use AnyEvent::Digest;
> use Digest::MD5;
>
> my $file = './test.flv';
>
> my $time = AE::timer 0, 3, sub {
>
> my $ctx = AnyEvent::Digest->new('Digest::MD5', unit => 655360,
> backend => 'aio');
> $ctx->addfile_async($file)->cb(sub {
> my $ctx = shift->recv;
> print $ctx->hexdigest ,"\n";
> });
>
> };
>
> AE::cv->recv;
>
>
> 2013/9/12 Yasutaka ATARASHI via RT <bug-AnyEvent-Digest@rt.cpan.org>
>