Changes between Version 5 and Version 6 of MGOS21GdalProvider
- Timestamp:
- 12/18/09 11:24:17 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MGOS21GdalProvider
v5 v6 76 76 == Configuration Parameters == 77 77 78 Jason Birch has had more success running a stable GDAL environment in !MapGuide with connection pooling disabled for the GDAL Provider. In serverconfig.ini, this can be accomplished by disabling connection pooling entirely78 Jason Birch has had more success running a stable !MapGuide with connection pooling disabled. In serverconfig.ini, this can be accomplished by disabling connection pooling entirely 79 79 {{{ 80 80 [FeatureServiceProperties] 81 81 DataConnectionPoolEnabled = 0 82 82 }}} 83 Or by excluding the GDAL Provider from the connection pooled provider list 83 84 If you require connection pooling for performance of other providers, you may instead wish to attempt to just exclude the GDAL Provider from the connection pool provider list. Note that in Jason's experience this improved reliability, but not to the same level as disabling connection pooling entirely; his guess was that the GDAL provider exercises some bug more reliably than the other providers, but the instability may be entirely unrelated. 85 84 86 {{{ 85 87 [FeatureServiceProperties] 86 88 DataConnectionPoolExcludedProviders = OSGeo.Gdal 87 }}} 89 }}} 90