Changes between Version 12 and Version 13 of MapGuideRfc19


Ignore:
Timestamp:
Apr 17, 2007, 8:23:20 AM (17 years ago)
Author:
brucedechant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc19

    v12 v13  
    3333== Proposed Solution ==
    3434
    35 The server will be modified to allow for a way to specify a default maximum # of concurrent FDO provider connections and for a way to specify a specific # of concurrent FDO provider connections for a specific provider.
     35The server will be modified to extend on the already existing DataConnectionPoolSize and DataConnectionPoolSizeCustom configuration properties. If the connection pool is disabled or a provider is listed as excluded from connection pooling the above settings will still be used to limit the # of concurrent FDO provider connections.
    3636
    37 Example settings inside the serverconfig.ini file:
    3837{{{
    39 # DataConnectionMaxConcurrent          Default # of allowed FDO connections per provider
    40 #                                      0 < Value <= 100
    41 # DataConnectionMaxConcurrentCustom    Custom # of allowed FDO connections for specified provider
    42 #                                      0 <= Value <= 1024
    43 #                                      Example: OSGeo.SDF:10,OSGeo.SHP:10
    44 DataConnectionMaxConcurrent        = 20
    45 DataConnectionMaxConcurrentCustom  = OSGeo.SDF:10
     38# DataConnectionPoolSize           Default # of FDO connections to allow per provider
     39#                                  These are cached if the data connection pool is enabled
     40#                                  and the provider is not excluded from the cache.
     41#                                       1 < Value <= 100
     42# DataConnectionPoolSizeCustom     Custom # of FDO connections to allow for the specified provider
     43#                                  These are cached if the data connection pool is enabled
     44#                                  and the provider is not excluded from the cache.
     45#                                       1 <= Value <= 1024
     46#                                      Example: OSGeo.SDF:10,OSGeo.Gdal:1
     47DataConnectionPoolSize             = 20
     48DataConnectionPoolSizeCustom       = OSGeo.Gdal:1
    4649}}}
    4750