Gordon Gao
Results
1
issues of
Gordon Gao
currently `nil` key is treated as empty-string key without namespace. which is confusing. ``` ruby redis = Redis.new namespaced = Redis::Namespace.new(:ns) namespaced.set nil, 'foo' namespaced.set '', 'bar' redis.keys # =>...