昨天花时间在 debug 一个非常诡异的问题,Java 代码里面的一个 HashSet 集合里面命令包含我这个 […]
Continue reading…
Posts tagged with 'hash'
Redis客户端缓存设计(In-Process caching)
今天看 antirez 写了一篇有关客户端缓存设计的想法:《Client side caching in Re […]
Continue reading…
Nginx(ngx_lua) 过滤 10w 个 User ID
今天的工作太刺激了,一天下来正好解决了一个有意思的问题。晚上来记录一下。 上次解决了当有很大的 HTTP bo […]
Continue reading…
Hash碰撞和解决策略
很多语言都有Hash Table这种数据结构,有的叫哈希表,有的叫散列表,有的叫字典,有的叫map。大体上讲, […]
Continue reading…
Python 为什么list不能作为字典的key?
很多Python初学者经常会有这样的疑问,为什么Python有tuple(元组)和list(列表)两种类型?为 […]
Continue reading…