<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Nov 9, 2012 at 9:16 AM, Eichner, Andreas - SID-NLKM <span dir="ltr"><<a href="mailto:Andreas.Eichner@sid.sachsen.de" target="_blank">Andreas.Eichner@sid.sachsen.de</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">>> Once the request is done the the connection<br>
>> will be closed.<br>
> I thought that setting allows to open the db connection only<br>
> once , keep it open until all layers data are read and will<br>
> prevent closing and opening connections in between layers ?<br>
<br>
</div>That's right. You can query more than one layer per GetMap request and<br>
MapServer will open the database connection only once for all layers<br>
involved. But once the request is done AFAIK the database connection<br>
will be closed.<br></blockquote><div>In CGI mode, a single connection will be reused across all layers of the request.</div><div>In FastCGI mode, a connection will be kept open during the lifecycle of the fastcgi process, i.e. the connection will not be closed at the end of a request.</div>
<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
> I searched the list and the MapServer doc about the Apache ? Module<br>
> mod_mapserver, however I could not find almost any reference<br>
> to it other than it is on the wish list for v 6.2 ? Does it already<br>
> exist in MapServer 6.0.3<br>
<br>
</div>The module is only available in the 6-2 branch and should be build when<br>
supplying the --with-apache-module switch and configuration should be a<br>
snippet in the apache config:<br>
<br>
  <Location "/wms" ><br>
    Mapfile /path/to/wms.map<br>
  </Location><br>
<br>
But I'm sure it's not well tested and only supports WxS services. You<br>
might ask Thomas Bonfort in what stage it is. Even if it's currently<br>
not suitable for productive use you might give it a try and provide some<br>
feedback. If it can solve your performance issues it might get more<br>
attention by the developers.<br></blockquote><div>It's there in 6.2 but we will not be advertising it as being ready for production. In practice the same mapfile is reused across requests, which makes for very good performance but has the following implications:</div>
<div>- WFS requests with FILTERs set should not be used, as the FILTERITEM/FILTER will continue to be applied to the subsequent requests, even if FILTER was not supplied on the subsequent requests.</div><div>- CGI substitutions and mapfile url overrides should not be used, as they would also be applied to subsequent requests</div>
<div>- WMS SLD requests should not be used, for the same reason.</div><div><br></div><div>Basically, the only safe usages are capabilities and plain GetMap or mode=map requests. Overcoming the previous limitations isn't planned for, so would need to be funded. It should be noted that these limitations would also apply to a homemade mapscript script that reuses a mapObj for multiple requests.</div>
<div><br></div><div>regards,</div><div>thomas </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
HTH<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
mapserver-users mailing list<br>
<a href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/mapserver-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
</div></div></blockquote></div><br></div>