danieleteti / delphiredisclient

Redis client for Delphi
Apache License 2.0
307 stars 133 forks source link

the funciton SISMEMBER(const aKey, aValue: string) exists bug #28

Closed baytime closed 3 years ago

baytime commented 3 years ago

the follow exists bug , function TRedisClient.SISMEMBER(const aKey, aValue: string): Integer; begin Result := SREM(BytesOfUnicode(aKey), BytesOfUnicode(aValue)); // may be // Result := SISMEMBER(BytesOfUnicode(aKey), BytesOfUnicode(aValue));

end;