Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: Mail::Box fails miserably when trying to open 30_000 messages maildir

by jhourcle (Prior)
on Jun 26, 2005 at 14:24 UTC ( [id://470029]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Mail::Box fails miserably when trying to open 30_000 messages maildir
in thread Mail::Box fails miserably when trying to open 30_000 messages maildir

There are some numbers in computing, which are boundries, and can cause problems (sort of like that whole y2k issue).

Near 30,000 is the number 32,768, which is 2**15. Now, you'd think to yourself, but wouldn't there be problems at 2**16, which is a nice round number in computer terms?

Well, no, because for an integer of (x) bits, if it's signed, it ranges from (-1*(2**(x-1)-1) to 2**(x-1). So, for a 16 bit number, it goes from -32767 to 32768. If the module in question uses XS (compiled C code), it's possible that it was compiled with a 16 bit signed number in there, which will have problems if you try to deal with numbers greater than 32,768.

If the number is exactly 30,000 or less, this probably isn't the issue. If it's over 32,768, this could be a problem.

From looking at the docs for Mail::Box, however, it looks to be pure perl, so I don't think this is the issue in this case.

Replies are listed 'Best First'.
Re^4: Mail::Box fails miserably when trying to open 30_000 messages maildir
by crouchingpenguin (Priest) on Jun 27, 2005 at 02:50 UTC
    Unless he has Mail::Box::Parser::C installed. But it looks like that is only passed a filehandle to parse.

    cp
    ----
    "Never be afraid to try something new. Remember, amateurs built the ark. Professionals built the Titanic."

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://470029]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-28 22:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found