redis 사용시 pfadd 사용하다 다음 에러를 만났다.
PFADD visits:2015-12-31 "x"
(error) WRONGTYPE Key is not a valid HyperLogLog string value.
/* Check if the object is a String with a valid HLL representation.
* Return C_OK if this is true, otherwise reply to the client
* with an error and return C_ERR. */
int isHLLObjectOrReply(client *c, robj *o) {
struct hllhdr *hdr;
/* Key exists, check type */
if (checkType(c,o,OBJ_STRING))
return C_ERR; /* Error already sent. */
if (stringObjectLen(o) < sizeof(*hdr)) goto invalid;
hdr = o->ptr;
/* Magic should be "HYLL". */
if (hdr->magic[0] != 'H' || hdr->magic[1] != 'Y' ||
hdr->magic[2] != 'L' || hdr->magic[3] != 'L') goto invalid;
if (hdr->encoding > HLL_MAX_ENCODING) goto invalid;
/* Dense representation string length should match exactly. */
if (hdr->encoding == HLL_DENSE &&
stringObjectLen(o) != HLL_DENSE_SIZE) goto invalid;
/* All tests passed. */
return C_OK;
invalid:
addReplySds(c,
sdsnew("-WRONGTYPE Key is not a valid "
"HyperLogLog string value.\r\n"));
return C_ERR;
}
'Redis' 카테고리의 다른 글
[Redis] DBSIZE 커맨드 (0) | 2016.01.14 |
---|---|
[redis] info 커맨드 (0) | 2016.01.14 |
[redis] Lua의 무한 루프 실행시 대처 방법 (0) | 2016.01.11 |
[redis] 인스타그램에서의 hash, string 비교 (0) | 2015.12.23 |
[redis] redis list를 큐로 사용하는 시스템 (0) | 2015.12.21 |