码迷,mamicode.com
首页 >  
搜索关键字:Consistent hashing    ( 417个结果
nginx TCP 代理& windows傻瓜式安装
要放在http之前 #tcp_proxy stream { upstream tcp_proxy{ hash $remote_addr consistent; server 192.168.8.56:4809; #需代理的IP+PORT } server { listen 4111; proxy_c ...
分类:Windows程序   时间:2020-06-05 21:22:13    阅读次数:89
为了更好的多线程性能,在对象创建或者更新时,若数据大于2047字节则 Python 的 GIL 会被释放。 执行计算密集型任务如压缩或哈希时释放 GIL
hashlib — Secure hashes and message digests — Python 3.8.3 documentation https://docs.python.org/3.8/library/hashlib.html For better multithreading pe ...
分类:编程语言   时间:2020-05-29 21:46:45    阅读次数:110
You shouldn't use *any* general-purpose hash function for user passwords, not BLAKE2, and not MD5, SHA-1, SHA-256, or SHA-3
hashlib — Secure hashes and message digests — Python 3.8.3 documentation https://docs.python.org/3.8/library/hashlib.html#randomized-hashing BLAKE2 ht ...
分类:其他好文   时间:2020-05-29 21:26:06    阅读次数:81
nginx四层代理
Nginx 四层代理理仅能存在于 main 段,以下是代理的配置 stream { upstream ssh_proxy { hash $remote_addr consistent; server 192.168.1.10:22; #实际的服务器IP及端口 } upstream mysql_pro ...
分类:其他好文   时间:2020-05-28 23:13:04    阅读次数:88
redis 源码阅读之 redis.c
Misc /* Resize */ for (j = 0; j < dbs_per_call; j++) { tryResizeHashTables(resize_db % server.dbnum); resize_db++; } /* Rehash */ if (server.activereh ...
分类:其他好文   时间:2020-05-27 01:06:53    阅读次数:83
Redis为什么需要集群?
Redis为什么需要集群? 首先Redis单实例主要有单点,容量有限,流量压力上限的问题。 Redis单点故障,可以通过主从复制replication,和自动故障转移sentinel哨兵机制。 但Redis单Master实例提供读写服务,仍然有容量和压力问题,因此需要数据分区,构建多个Master实 ...
分类:其他好文   时间:2020-05-24 18:07:28    阅读次数:302
Algorithms - Data Structure - Perfect Hashing - 完全散列
相关概念 散列表 hashtable 是一种实现字典操作的有效数据结构. 在散列表中,不是直接把关键字作为数组的下标,而是根据关键字计算出相应的下标. 散列函数 hashfunction'h' 除法散列法 通过取k除以m的余数,将关键k映射到m个slot中的某一个上.即散列函数为:h(k)=kmod ...
分类:其他好文   时间:2020-05-24 16:39:31    阅读次数:59
数据库事务知识点总结
事务分为三个主要知识点,分别是基本属性,并发事务处理带来的问题,以及事务的隔离级别。 一、事务的基本属性 1. 原子性(Atomicity) 事务是一个原子操作单元,其对数据的修改,要么全都执行,要么全不执行 2. 一致性(Consistent) 在事务开始和完成时,数据都必须保持一致状态,这意味着 ...
分类:数据库   时间:2020-05-10 13:11:48    阅读次数:66
背单词
paradox crucial flaw Plague accommodate cruelty transitive consistent dropout imitate tumor consequence explicitly sway imaginary contaminate soar sol ...
分类:其他好文   时间:2020-05-02 16:31:59    阅读次数:48
1145 Hashing - Average Search Time (25分)
The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of inte ...
分类:其他好文   时间:2020-05-02 15:11:59    阅读次数:52
417条   上一页 1 2 3 4 5 ... 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!