<div dir="ltr">Thanks for the reply Andy. I had Googled a bit and found this <a href="http://stackoverflow.com/questions/2649334/difference-between-static-and-shared-libraries">stackoverflow</a> discussion in which the answer at the bottom said:<blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>"The most significant advantage of shared libraries is that there is only
 one copy of code loaded in memory, no matter how many processes are 
using the library. For static libraries each process gets its own copy 
of the code. This can lead to significant memory wastage."</div></blockquote>But I'm not sure if that's applicable with a web/fcgi application.<div><br></div><div>rich</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 15, 2015 at 3:04 PM, Andy Colson <span dir="ltr"><<a href="mailto:andy@squeakycode.net" target="_blank">andy@squeakycode.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 5/15/2015 3:59 PM, Richard Greenwood wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm working on Linux and have statically linked mapserv for convenience<br>
but now I'm wondering if it is adversely affecting memory use. For<br>
example, if I have five fcgi mapserv instance like:<br>
   mapserv.fcgi?map=mapfile1.map<br>
   mapserv.fcgi?map=mapfile2.map<br>
   mapserv.fcgi?map=mapfile3.map<br>
   mapserv.fcgi?map=mapfile4.map<br>
   mapserv.fcgi?map=mapfile5.map<br>
Am I using more memory with my static build than if they all referencing<br>
the shared libmapserver.so?<br>
<br>
Thanks,<br>
rich<br>
<br>
</blockquote>
<br></div></div>
I believe you will pay for the cost of one executable, the others will share the code pages, but get their own data pages.<br>
<br>
So no, you probably are not using more memory using static build.<span class="HOEnZb"><font color="#888888"><br>
<br>
-Andy<br>
<br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr">Richard W. Greenwood, PLS<br><a href="http://www.greenwoodmap.com" target="_blank">www.greenwoodmap.com</a></div></div>
</div>