linux 安装录屏软件obs

ubuntu 安装ffmpeg sudo apt install ffmpeg 安装软件源 sudo add-apt-repository ppa:obsproject/obs-studio 更新软件源 sudo apt update 安装obs sudo apt install obs-studio

react 6个非常好用的包

1. react-native-qrcode-scanner 很多时候我们都需要扫码来进行简单的操作,而这个包就是方便我们生成和管理二维码的。 安装方式: npm i react-native-qrcode-scanner 2. react-native-immediate-phone-call 如果...

golang中context的作用

一个goroutine可以启动其他的goroutine,而这些goroutine又可以启动其他得goroutine,依此类推的话,则第一个goroutine应该能够向所有其它goroutine发送取消信号。 context 上下文包的唯一目的是在goroutine之间...

mysql 分库分表

分库分表时机 当业务量小的时候,我们不需要去关注数据库存储的数据多少,当业务量大的时候,单个表的行数有几百万的时候,我们需要考虑分库分表。 具体步骤 根据业务增常量,推算出分库的片数 选出分表的关键字...

docker 配置国内镜像

版本docker > 1.12 修改/etc/docker/daemon.json文件,没有则手动创建。 { "registry-mirrors":[ "https://registry.docker-cn.com", "http://hub-mirror.c.163...

巧用redis的hyper loglog进行uv数据的统计

在面试的时候我们经常会被问道redis的数据结构,我们经常只会回答5种常见的数据结构,分别是字符串,链表,集合,有序集合,hash。其实在这之外,还有三种数据结构非常的又用,它们分别是bitmap,geo,hyper logl...

一致性hash算法

我们都知道单机应用很简单,但是一旦涉及到多机应用,涉及到分布式,那么事情就会变得复杂,而一致性hash算法就是为了解决分布式中添加节点不造成大量节点数据重新分配的算法。 诞生 1997年,Karger在cache中首次...

艾伦·佩里斯的编程名言

英文 One man's constant is another man's variable. Functions delay binding; data structures induce binding. Moral: Structure data late in the programming process. Syntactic sugar causes cance...