From ruby-talk Thu Nov 15 20:38:54 2007 From: "Caleb Tennis" Date: Thu, 15 Nov 2007 20:38:54 +0000 To: ruby-talk Subject: Re: webrick alternative Message-Id: <59762.192.168.2.159.1195159083.squirrel () www ! aei-tech ! com> X-MARC-Message: https://marc.info/?l=ruby-talk&m=119515927616112 > In contrast the plain ruby interpreter needs about 1,5 MB rss and 3 MB drs. Are you using a staticly linked ruby or shared libraries? ps aux isn't a great indicator of memory usage because it will overlap shared libraries. "pmap -d " will give you a better indicator of memory usage, and I'm guessing you could toy with your thread stack size in ulimit to reduce actual footprint quite a bit if necessary. Caleb