购买了一台阿里云服务器,准备专门用这台服务器跑memcached,现在遇到一个部署方式的选择问题,是直接将memcached安装在linux上还是用docker部署?用docker部署是否会带来性能损耗?如果有性能损耗,其影响是否可以忽略?
最终参考 What is the runtime performance cost of a Docker container 选择了使用 docker 进行部署
docker run -d --net=host --restart unless-stopped memcached