Hi everyone,

I'm creating an application that uses several QNetworkAccessManagers instances. I would like to share the same files from the default cache directory between these QNetworkAcessManagers, but, Qt documentation says that: "Currently you can not share the same cache files with more then one disk cache.".

So, my idea is to share a single instance of QNetworkDiskCache between all QNetworkAccessManager instances, but, it was not possible because QNetworkAccessManager takes the ownership of QNetworkDiskCache.

My questions are:

1) Is there any way to disable the ownership ?
2) If not, anyone has suggestions in how to solve my problem?

Thanks in advance!