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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
如果将所有人下载过的每一张图都缓存到ipfs, 就可以得到一个url和哈希值对应的键值对, 做成一个表, 以后每次下载之前, 先判断一下要下载的漫画url是否已经在这个表里面, 如果已经存在, 那就直接去ipfs里面拿到已经缓存的照片.
但是现在的问题是, 这个由url和哈希值组成的表, 应该保存在哪里呢?
1.保存在某一个我的服务器上, 这样子感觉有点风险, 一来服务器信息可能泄露, 二来服务器也可能变更导致不稳定.
2.保存在一个github仓库上, 每一次下载之前, 去仓库下载这个表, 每一次下载完成之后, 提交这个表到仓库, 但是这样子的话, 又得思考提交权限问题.
3.把这个表也存在ipfs里面, 但是只要文件变动了, 表的哈希值就会变动, 要怎么更新这个表的哈希值到代码里呢?
Beta Was this translation helpful? Give feedback.
All reactions