我在package.json中添加了以下数据包:
我取消注释
adapter: 'connect-redis',
在我的config / session.js
中如果我执行了所有这些操作,服务器将启动并且此警告将从终端消失:
Warning: connect.session() MemoryStore is not
designed for a production environment, as it will leak
memory, and will not scale past a single process.
但我在config / csrf.json中激活的CSRF不再起作用,而且我使用sails-hook-flash的代码也不起作用。
对于这一行
req.addFlash("success","Created !");
我有以下错误
addFlash is not a function
当然,在激活Redis之前,没有发生错误。 如何正确配置风帆和Redis?或者我应该使用除Redis之外的其他东西?你能告诉我一个教程,因为我真的不明白吗?