0

on meteor i've just added a new feature to download some image in public/img/aSpecificFolder.

It works locally, but i've seen that each time i deploy on meteor.com using deploy command, it looks like that public folder is completely erased. Or maybe that the deploy remove the current app and install a new one. So it only keept the connection to db but all files are removed and put again.

What is the good way of doing if i want to store image on meteor.com ?

thanks

4

1 回答 1

0

您是否考虑过使用像collections-fs这样的东西。当您在流星上部署时,它将清除您以前的应用程序并使用新的应用程序。

如果您使用像 collections-fs 这样的东西,它可以让您将文件存储在 mongo 数据库中,因此它们实际上不在提供数据的同一台服务器上。

这在另一种方式(缩放)方面也很好,因为托管您的应用程序的每个虚拟环境都能够访问这些文件。如果您静态存储文件,则只能在其中一台服务器上访问它们。

目前流星托管(通过流星部署)使用一台服务器,但它很可能在未来是可扩展的。

于 2013-09-05T17:48:55.540 回答