Files
redis/src
Ozan Tezcan 4aa25d042c Reply with array of return codes if the key does not exist for HFE commands (#13343)
Currently, HFE commands reply with empty array if the key does not
exist. Though, non-existing key and empty key is the same thing. 
It means fields given in the command do not exist in the empty key. 
So, replying with an array of 'no field' error codes (-2) suits better 
to Redis logic. e.g. Similarly, `hmget` returns array of nulls if the 
key does not exist.

After this PR:
```
127.0.0.1:6379> hpersist missingkey fields 2 a b
1) (integer) -2
2) (integer) -2
```
2024-06-14 09:35:05 +03:00
..
2024-05-29 19:47:48 +08:00
2024-05-30 15:26:19 +08:00
2020-04-24 17:11:21 -07:00
2024-05-29 19:47:48 +08:00
2024-05-30 15:26:19 +08:00
2024-04-18 16:06:30 +03:00
2024-04-18 16:06:30 +03:00
2024-04-18 16:06:30 +03:00
2024-05-30 15:26:19 +08:00
2024-04-18 16:06:30 +03:00
2024-04-18 16:06:30 +03:00
2024-05-30 15:26:19 +08:00
2024-04-18 16:06:30 +03:00
2024-04-18 16:06:30 +03:00
2024-05-29 19:47:48 +08:00
2024-05-29 19:47:48 +08:00
2021-07-10 10:04:54 -05:00
2022-07-18 10:56:26 +03:00