
杂类
大胖头leo
这个作者很懒,什么都没留下…
展开
-
share-nothing、share-memory、share-disk的原理
首先介绍share nothing概念。最早接触它是在 DataBaseManagentSystem一书的并行数据库章节中。 并行数据库要求尽可能的去并行执行数据库操作,从而提高性能。在并行计算体系结构实现中有很多可选的体系结构。包括: share-memory:多个cpu共享同一片内存,cpu之间通过内部通讯机制(interconnection network)进行通讯; sh...翻译 2019-03-04 10:59:30 · 1999 阅读 · 0 评论 -
Ubuntu18.04安装jupyter notebook
第一步,python先更新apt-getsudo apt-get update安装python3 和开发包sudo apt install python3-pip python3-dev2.虚拟环境和jupyter首先先安装虚拟环境, 在虚拟环境下, jupyter 只会使用该环境下的包sudo -H pip3 install --upgrade pip #...原创 2019-08-20 23:30:25 · 4083 阅读 · 0 评论