Hi,<br><br>I am having some problems with two layers that use tile_source &quot;nocache&quot;.<br><br>I am using it because these layers are respectively points sent by fishing vessels and areas. These points are sent at 5min intervals and the areas are inserted by the user. So, *i think* i can&#39;t use cache in this case.
<br><br>The problem is that the map is taking too much time to load. The points table in the database have 18.000 registers... and there will be a lot more. And there is about 18 areas.<br><br>Also, I am using variable substitution in mapfile. My points layer is something like that:
<br><br>layer<br>&nbsp;&nbsp;&nbsp; name &quot;track&quot;<br>&nbsp;&nbsp;&nbsp; group &quot;Track&quot;<br>&nbsp;&nbsp;&nbsp; connectiontype POSTGIS<br>&nbsp;&nbsp;&nbsp; connection &quot;dbname=xxx user=xxx password=xxx host=xxx port=5432&quot;<br>&nbsp;&nbsp;&nbsp; data &quot;%data%&quot;<br>
&nbsp;&nbsp;&nbsp; type line<br>&nbsp;&nbsp;&nbsp; status on<br>&nbsp;&nbsp;&nbsp; metadata<br>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; tile_source &quot;nocache&quot;<br>&nbsp;&nbsp;&nbsp; end<br>&nbsp;&nbsp;&nbsp; class<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name &quot;track&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; color 0 0 0<br>&nbsp;&nbsp;&nbsp; end<br>end<br><br><br>When the user select some vessel, I do that using javascript:
<br><br>var map = myKaMap.getCurrentMap();<br>var track = mapa.getLayer(&#39;track&#39;);<br>track.replacementVariables = {vessel: id_vessel};<br>track.redraw();<br><br>The areas layer is using the same logic.<br><br>So, there is a way to achieve that but with better perfomance? The performance was ok before I add these two layers. Any tips?