Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Jonathan Tweed
On 24 Aug 2006, at 00:11, Jonathan wrote: On Aug 23, 2006, at 6:05 PM, Jonathan Tweed wrote: Where did 163MB come from?! 163 is about the resident memory size of the parent ( 60564 ) , and the child ( 101764 ). its also possible that its 60mb child res, 100mb parent res, and 3mb child r

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Jonathan Tweed
On 23 Aug 2006, at 23:39, Philip M. Gollucci wrote: Thanks for the explanation Philip, it's much appreciated. Jonathan

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Jonathan Vanasco
On Aug 24, 2006, at 6:00 AM, Philip M. Gollucci wrote: Based on GTOP metrics above, you need to test the copy-on-write of FreeBSD.. The A::SL docs have a method to do this contributed by Torsten Forsch(sorry if I spelled your name wrong) You might e-mail [EMAIL PROTECTED] or [EMAIL PROTECTED

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Philip M. Gollucci
Jonathan Vanasco wrote: GTop.pm is saying: ->size46534656 ->resident 52944896 ps is saying root 93830 15.8 5.1 54928 51616 It looks to me more like GTOP is just wrong on that. I agree -- thats F***'ed though. I think your best bet for that is to figure out how

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Jonathan Vanasco
On Aug 24, 2006, at 6:00 AM, Philip M. Gollucci wrote: b- freebsd is showing a larger resident than size One is in KB the other is in Bytes -- thats due to the way getrusage (3) reports it. under GTop.pm though? i'm not using bsd::resource. the libgtop source suggests that its making

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Philip M. Gollucci
Jonathan wrote: > > On Aug 24, 2006, at 2:59 AM, Philip M. Gollucci wrote: >> Every one of those looks as I would expect. > > really? i'd expect the memory usage to be more uniform See another example of this here: http://perl.apache.org/docs/1.0/guide/performance.html#_Bloatware__modules [scrol

A::SL - mp1/mp2

2006-08-24 Thread Philip M. Gollucci
Hi, t/apache/basicok t/apache/check_n_requests.ok t/apache/check_n_requests2ok t/apache/deprecated...ok All tests successful. Files=4, Tests=19, 5 wallclock secs ( 2.66 cusr + 0.57 csys = 3.23 CPU) So I'm moving on the the t/apache2 tests and module After their

Re: Prefork not sharing on FreeBSD, but sharing on OSX ?

2006-08-24 Thread Jonathan
On Aug 24, 2006, at 2:59 AM, Philip M. Gollucci wrote: Every one of those looks as I would expect. really? i'd expect the memory usage to be more uniform RSS is not shared RAM, but memory resident -- the rest in is swapped out. yeah, i didn't finish the gtop tests yet. i kind of passed o