Open
Description
Expected Behavior
According to the redis doc, zset members should always be strings. We want zset members to be returned as strings so that we don't have to do type assertion explicitly.
Current Behavior
zset member is returned as an interface:
go-redis/sortedset_commands.go
Line 730 in 21bd40a
Possible Solution
Define the Z struct's member field as a string type:
go-redis/sortedset_commands.go
Lines 728 to 731 in 21bd40a