in reply to Re: I ran out of memory
in thread I ran out of memory
So I guess my host limits the ammount of memory my CGI programs can use...#!/usr/bin/perl $| = 1; print "Content-type: text/html\n\n"; print "Memory/Resource Test<BR>\n"; print "Number is the amount of memory used<BR>\n"; print "If you don't see 'Completed Test!' at the bottom, the test fail +ed<P><HR>\n"; for ($i = 10000; $i <= 8000000; $i += 100000) { $x = " " x $i; print "-"; print "| $i ; Time (secs): ", (time - $^T), "<BR>\n" if $i % 1 +000000 == 0; } print "Completed Test!\n"; exit(0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: I ran out of memory
by dragonchild (Archbishop) on Aug 26, 2004 at 17:09 UTC | |
by ido50 (Scribe) on Aug 26, 2004 at 17:15 UTC | |
by MidLifeXis (Monsignor) on Aug 27, 2004 at 17:19 UTC |