Skip Menu |

This queue is for tickets about the AnyEvent-Digest CPAN distribution.

Report information
The Basics
Id: 88628
Status: resolved
Priority: 0/
Queue: AnyEvent-Digest

People
Owner: YAKEX [...] cpan.org
Requestors: cumtxhzyy [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: v0.0.4



Subject: A small bug about Document.
Date: Thu, 12 Sep 2013 19:31:36 +0800
To: bug-AnyEvent-Digest [...] rt.cpan.org
From: 周元元 <cumtxhzyy [...] gmail.com>
Hi~ The module is useful for me. But the document have something wrong with it. Bugs as follows: (1) backend => 'IO::AIO' should be backend => 'aio' (2) 'print $ctx->hexdigest' should be 'print $ctx->hexdigest ."\n" ' Thanks for your module!
Thank you for your report. I fixed the issue by https://github.com/yak1ex/AnyEvent-Digest/commit/94b8a6a91306f4547e795a9d3203b794b3bbf879 After the next release, I will close this ticket. I think this issue is not so severe, thus I will not release it immediately.
Subject: Re: [rt.cpan.org #88628] A small bug about Document.
Date: Thu, 26 Sep 2013 16:26:17 +0800
To: bug-AnyEvent-Digest [...] rt.cpan.org
From: 周元元 <cumtxhzyy [...] gmail.com>
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> Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=88628 > > > Thank you for your report. > > I fixed the issue by > https://github.com/yak1ex/AnyEvent-Digest/commit/94b8a6a91306f4547e795a9d3203b794b3bbf879 > > After the next release, I will close this ticket. > > I think this issue is not so severe, thus I will not release it > immediately. > > > > > >
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> >
> > <URL: https://rt.cpan.org/Ticket/Display.html?id=88628 > > > > > Thank you for your report. > > > > I fixed the issue by > > https://github.com/yak1ex/AnyEvent- > > Digest/commit/94b8a6a91306f4547e795a9d3203b794b3bbf879 > > > > After the next release, I will close this ticket. > > > > I think this issue is not so severe, thus I will not release it > > immediately. > > > > > > > > > > > >