I haven't tested under load at all, the site gets very little traffic,
about 4 unique visitors per day.
Here's some of the apache processes from ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
www-data 27197 0.0 3.3 10488 2012 ? S 22:24 0:00
/usr/sbin/apache2 -k start -DSSL
www-data 27198 0.0 21.7 75128 13112 ? S 22:24 0:00
/usr/sbin/apache2 -k start -DSSL
www-data 27199 0.0 10.7 76280 6496 ? S 22:24 0:00
/usr/sbin/apache2 -k start -DSSL
www-data 27200 0.0 21.7 75128 13112 ? S 22:24 0:00
/usr/sbin/apache2 -k start -DSSL
www-data 27202 0.0 10.7 76280 6496 ? S 22:24 0:00
/usr/sbin/apache2 -k start -DSSL
There's about a total 58 of them. Quite a bit of that memory must be
shared. But then memory usage reports have always been a bit of mystery
to me. How the %Mem column can add up to about 937.3% means that there
must be some happy sharing going on...
Try :
ps aux | awk '{ tot += $4 } END {print tot}'
to get your super %mem usage :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---