我正在浏览Django通道文档(2.html),在某些时候它建议使用docker启动redis服务器,如下所述,
We will use a channel layer that uses Redis as its backing store. To start a Redis server on port 6379, run the following command:
$ docker run -p 6379:6379 -d redis:5
然而,我跳过了使用docker,所以我不知道如何运行以上命令。
有什么方法可以在virtualenv /pip中启动redis服务器?
https://stackoverflow.com/questions/62578455
复制相似问题