[mapserver-commits] r12439 - trunk/mapserver/mapcache
svn at osgeo.org
svn at osgeo.org
Fri Aug 26 07:26:11 EDT 2011
Author: tbonfort
Date: 2011-08-26 04:26:11 -0700 (Fri, 26 Aug 2011)
New Revision: 12439
Modified:
trunk/mapserver/mapcache/geocache.xml
Log:
refactor module and fcgi prog to not have to treat different response types
refactor fcgi program to be compatible with cgi
make fcgi prog correctly output all headers
extract headers and response code from proxied requests
add a featureinfo popup on wms demo page
getfeatureinfo requests dont go through proxying rules
prevent the fcgi prog from deleting lockfiles on startup
thomas.bonfort | 2011-08-25 12:47:22 +0200 (Thu, 25 Aug 2011)
Modified: trunk/mapserver/mapcache/geocache.xml
===================================================================
--- trunk/mapserver/mapcache/geocache.xml 2011-08-26 11:26:07 UTC (rev 12438)
+++ trunk/mapserver/mapcache/geocache.xml 2011-08-26 11:26:11 UTC (rev 12439)
@@ -318,7 +318,6 @@
<!--
a cache is where tiles are stored once they have been rendered
- the only "type" available right now is "disk"
-->
<cache name="disk" type="disk">
@@ -341,6 +340,7 @@
<!-- memcache cache
entry accepts multiple <server> entries
+ requires a fairly recent apr-util library and headers
-->
<cache name="memcache" type="memcache">
<server>
@@ -348,6 +348,19 @@
<port>11211</port>
</server>
</cache>
+
+ <!-- sqlite cache
+ requires building with "with-sqlite"
+ -->
+ <cache name="sqlite" type="sqlite3">
+ <!-- base
+
+ absolute filesystem path where the sqlite database files will be stored.
+ this directory needs to be readable and writable by the user running
+ apache
+ -->
+ <base>/tmp</base>
+ </cache>
<!-- format
More information about the mapserver-commits
mailing list