You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are building a file storage system (website) based on Powergate, it's great and everything works well except one thing: when a user downloading a file which he uploaded before, on server side, we call the powerGate.data.get(cid) to retrieve the whole file to the disk of the server, then stream it to the brower or any other kind of client, the flow worked, but the user has to wait and wait ... until the server begins the download streaming, and later I found another solution: getting the data from IPFS gate way:
So is there any way to get the data stream with powergate? then I dont have to wait the server to retrieve the whole file first, the users will be happy too, or If I can get the retrieving progress, it's also good.
The text was updated successfully, but these errors were encountered:
We are building a file storage system (website) based on Powergate, it's great and everything works well except one thing: when a user downloading a file which he uploaded before, on server side, we call the
powerGate.data.get(cid)
to retrieve the whole file to the disk of the server, then stream it to the brower or any other kind of client, the flow worked, but the user has to wait and wait ... until the server begins the download streaming, and later I found another solution: getting the data from IPFS gate way:but this solution works for hot storage only.
So is there any way to get the data stream with powergate? then I dont have to wait the server to retrieve the whole file first, the users will be happy too, or If I can get the retrieving progress, it's also good.
The text was updated successfully, but these errors were encountered: