摘要:
书籍合集:链接: https://pan.baidu.com/s/14NcotOVCT100cGTxonxvqg 密码: 7ci1 记得要认真看,好好刷题噢~加油,冲呀![哇] 赌你看不懂:分布式存储系统的数据强一致性挑战 https://www.sohu.com/a/492857455_41187 阅读全文
摘要:
iTerm2 https://www.jianshu.com/p/a78845c3f476 安装jdk https://www.cnblogs.com/testpu/p/15504599.htmlyum install java-1.8.0-openjdk.x86_64 java-1.8.0-ope 阅读全文
摘要:
install Docker https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-centos-7 install docker-compose sudo curl -L "https:/ 阅读全文
摘要:
Install kubectl binary with curl on Linux https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/minikube https://minikube.sigs.k8s.io/docs/star 阅读全文
摘要:
在 centos上,报错:error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory 解决方案: 添加软件源并手动安装 对于 CentO 阅读全文
摘要:
使用clion ide,CMakeLists.txt, include_directories(BEFORE /opt/homebrew/opt/openssl@1.1/include) link_directories(/opt/homebrew/opt/openssl/lib) 参考: http 阅读全文
摘要:
在服务器上使用 GraphQL 代替 REST 是有很多好处的,使用 Apollo Client 取代自己编写的数据获取逻辑也有很多优势。在这篇文章中,我们主要讨论 GraphQL 最突出的架构优势。 本文最初发布于 khalilstemmler.com 网站,经原作者授权由 InfoQ 中文站翻译 阅读全文
摘要:
重新安装: 打开链接: https://raw.githubusercontent.com/Homebrew/install/master/install 还是把网页内容保存下来,命名为brew_install.rb文件名 执行 ruby brew_insatll.rb 输入密码,坐等安装完成。 参 阅读全文
摘要:
大部分程序员认为这就是他们的全部工作。他们的工作是且仅是:按照需求文档编写代码,并且修复任何 Bug。这真是大错特错。 从系统相关方(Stakeholder)的角度来看,他们所提出的一系列的变更需求的范畴都是类似的,因此成本也应该是固定的。但是从研发者角度来看,系统用户持续不断的变更需求就像是要求他 阅读全文
摘要:
1. 查询未绑定货位的商品。not in,查询耗时30秒, 通过用not exists ,查询耗时2秒左右 2. 查询待盘点任务,耗时30秒左右。待盘点任务表数据量180万左右,连接商品表,商品货位关联关系表。查看执行计划,发现用的是全表扫描,没有走索引。根据最左前缀匹配原则,优化后,不到几十毫秒。 阅读全文