Hello community!
I am very new to ipfs project and currently testing and trying, so i can wrap my head around it.
To the situation:
I have 2 computers on my desk. On PC1 created a file and added it to ipfs (ipfs add filename). On PC2 i created the same file and added to ipfs also. Now i have same CID on both peers
In my browser https://ipfs.io/ipfs/CID show me the file content.
On PC1 and PC2, when i run the command:
ipfs dht findprovs CID
i see both PC1/2 peerIDs. So far, so good
Then, on both PCs:
ipfs pin rm CID
and
ipfs repo gc
After pin removal and G.C., on both PCs i check if the CID is there:
ipfs refs local | grep CID
no result. So garbage collector works. None of the peers have it locally
BUT
https://ipfs.io/ipfs/CID (no cache)
is still working.Where is the content served from, since both peers garbage collected it?
also
ipfs dht findprovs CID
still show my both PCs peerIDs
I cannot understand. Am i missing something?
Thank you in advance and excuse me, if the question is badly explained!