Changes between Version 7 and Version 8 of ConfigOptions


Ignore:
Timestamp:
Jul 18, 2010, 3:56:10 AM (14 years ago)
Author:
Even Rouault
Comment:

Change doc accordingly to change done in r20095

Legend:

Unmodified
Added
Removed
Modified
  • ConfigOptions

    v7 v8  
    8585=== GDAL_CACHEMAX ===
    8686
    87 This option controls the default GDAL raster block cache size.  If its value is small (less than 10000 in 1.7 and earlier, 100000 in 1.8 and later), it is assumed to be measured in megabytes, otherwise in bytes.   Note that this value is only consulted the first time the cache size is requested overriding the initial default (40MB in GDAL 1.7, but often changing for each release).  To change this value programmatically during operation of the program it is better to use GDALSetCacheMax(int nNewSize) (always in bytes).  Before GDAL 1.8.0, the maximum cache size that can be specified is 2 GB, so when specifying in megabytes, don't try setting values bigger than 2047. Since GDAL 1.8.0, on 64bit platforms, it is possible to specify a 64bit value through GDAL_CACHEMAX or with GDALSetCacheMax64(GIntBig nNewSize).
     87This option controls the default GDAL raster block cache size.  If its value is small (less than 10000 in 1.7 and earlier, 100000 in 1.8 and later), it is assumed to be measured in megabytes, otherwise in bytes.   Note that this value is only consulted the first time the cache size is requested overriding the initial default (40MB in GDAL 1.7, but often changing for each release).  To change this value programmatically during operation of the program it is better to use GDALSetCacheMax(int nNewSize) (always in bytes).  Before GDAL 1.8.0, the maximum cache size that can be specified is 2 GB, so when specifying in megabytes, don't try setting values bigger than 2047. Since GDAL 1.8.0, it is possible to specify a 64bit value through GDAL_CACHEMAX or with GDALSetCacheMax64(GIntBig nNewSize) (but the maximum practical value on 32 bit OS is between 2 and 4 GB. It is the responsibility of the user to set a consistant value)
    8888
    8989=== GDAL_SKIP ===