Re: too many file handles

2021-03-18 Thread Elizabeth Mattijsen
t; > } > > I had assumed that as soon as the $http went out of scope, it would be > collected. > > When I rewrote as > > my $http = LibCurl::HTTP.new; > > for @links -> link { ... } > > then the program ran to completion without failing with 't

Re: too many file handles

2021-03-17 Thread David Emanuel da Costa Santiago
Now my question is this: Is this a problem with the LibCurl::Easy module, where I can raise an issue. Here: https://github.com/CurtTilmes/raku-libcurl Regards, David Santiago

Re: too many file handles

2021-03-17 Thread Richard Hainsworth
new; for @links -> link { ... } then the program ran to completion without failing with 'too many file handles. Now my question is this: Is this a problem with the LibCurl::Easy module, where I can raise an issue. Or is this a more general Raku problem with objects not being garbage col

RE: too many file handles

2021-03-17 Thread Mark Devine
, but sometimes people just want to get by the snag and keep flowing. Mark -Original Message- From: Richard Hainsworth Sent: Wednesday, March 17, 2021 13:46 To: perl6-users Subject: too many file handles I have been running into this error: "Too many open files" Sorry for the lack

Re: too many file handles

2021-03-17 Thread JJ Merelo
Is it possible that is't got its origin in the operating system, and not in Raku itself? El mié, 17 mar 2021 a las 18:56, Elizabeth Mattijsen () escribió: > > On 17 Mar 2021, at 18:45, Richard Hainsworth > wrote: > > > > I have been running into this error: "Too many open files" > > > > Sorry

Re: too many file handles

2021-03-17 Thread Elizabeth Mattijsen
> On 17 Mar 2021, at 18:45, Richard Hainsworth wrote: > > I have been running into this error: "Too many open files" > > Sorry for the lack of detail. The problem is that the error comes up in odd > places, so I have found it difficult to golf down into Raku program that > always fails with

too many file handles

2021-03-17 Thread Richard Hainsworth
I have been running into this error: "Too many open files" Sorry for the lack of detail. The problem is that the error comes up in odd places, so I have found it difficult to golf down into Raku program that always fails with this error. When I separate out the code that leads to the error,