Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

RE: Get chatbox lines

by mdillon (Priest)
on May 26, 2000 at 20:47 UTC ( [id://15030]=note: print w/replies, xml ) Need Help??


in reply to Get chatbox lines

there's no need to use splice in a void context to trim the cache in your getnewlines sub. just use the following code:
my $CACHE_LIMIT = 50; $#$cache = $CACHE_LIMIT - (1 - $[);

Replies are listed 'Best First'.
RE: RE: Get chatbox lines
by ZZamboni (Curate) on May 26, 2000 at 21:43 UTC
RE: RE: Get chatbox lines
by ZZamboni (Curate) on May 30, 2000 at 23:31 UTC
    The problem with this (now that I have tested it well) is that it enlarges the array when it is originally smaller than the limit. splice doesn't do that. Any ideas? Thanks,

    --ZZamboni

      not besides just appending 'if @$cache > $CACHE_LIMIT';

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-24 19:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found