Re: [gdal-dev] Can GDAL driver be reused by GDAL python binding

2025-07-07 Thread Even Rouault via gdal-dev
Hi, Connection pooling is an internal implementation driver of each driver. You have to be careful about multi-threaded use cases if you want to implement that though. The PostGISRaster driver has some connection pooling. See PostGISRasterDriver::GetConnection() Even Le 07/07/2025 à 21:18,

[gdal-dev] Can GDAL driver be reused by GDAL python binding

2025-07-07 Thread Fengting Chen via gdal-dev
Hi, A Python program can invoke GDAL driver through gdal.open() to read/write raster/vector data. Is it possible for the GDAL driver to be reused in order to avoid reinitializing the driver for each gdal.open() call? For example, if a GDAL driver to a database implements a connection pool, will