Closed woutdenolf closed 2 years ago
The usage of silx.io is the easiest for now. Did you have a look at the profiling results? Most of the time is spent in reading and writing HDF5 files. So memory access would be desirable but the amount of data to share (several GB) makes it impracticable when processing on a different computer. Memcached does not scale well above dozens of MB. So probably going via HDF5 is still the best.
To be used online, this code should never lock the file and should retry in case of failure (concurrent read/write).
I could do one of these things:
@kif What do you prefer?