Re: [gdal-dev] CSharp bindings queued for removal (was Re: GDAL CSharp bindings maintainers/contributors listening... ?)

2025-02-17 Thread Paul Harwood via gdal-dev
{apologies for the late response - add your preferred rif on "I was busy" excuses} The PDAL approach is much easier (speaking as the de facto C# maintainer for PDAL and MDAL). However - it is a real "I would not start from here" issue (to quote our Irish cousins). I cannot see the communities in

[gdal-dev] Block caching in gdal.Dataset()s opened by different threads/processes

2025-02-17 Thread Rami DV via gdal-dev
Hello gdal-dev! Please forgive me for the newbie question, I am just now starting to develop more deeply with GDAL rather than just using the command line programs. I'm writing a program which opens a GDAL Tile Index from various different threads & processes, and I would like to keep an LRU cach

Re: [gdal-dev] Block caching in gdal.Dataset()s opened by different threads/processes

2025-02-17 Thread Javier Jimenez Shaw via gdal-dev
GDAL raster cache works in one process for any thread in that process. It is not shared among different processes. See that reading simultaneously from the same dataset object in different threads many corrupt your cache. Do not do that! On Mon, 17 Feb 2025 at 17:38, Rami DV via gdal-dev wrote: