QuickLib icon indicating copy to clipboard operation
QuickLib copied to clipboard

There is an error in TRedisClientRedisSET in Quick.Data.Redis

Open wuhao13 opened this issue 9 months ago • 0 comments

There is an error in TRedisClientRedisSET in Quick.Data.Redis. Here is the fix code function TRedisClient.RedisSET(const aKey, aValue: string): Boolean; var rediscmd : IRedisCommand; begin rediscmd := TRedisCommand.Create('SET') .AddArgument(aKey) .AddArgument(aValue); Result := Command(rediscmd.ToCommand).IsDone; end;

wuhao13 avatar Feb 07 '25 03:02 wuhao13