Redisson Strings

레디스 개발자 교육 신청 레디스 정기점검/기술지원
Redis Technical Support
레디스 엔터프라이즈 서버
Redis Enterprise Server

Strings

Strings에는 주로 getBucket()을 사용한다. 증가(INCR), 감소(DECR) 명령에는 getAtomicLong(), Binary 데이터는 getBinaryStream(), BIT operation에는 getBitSet()을 사용한다.

Class 변수로 선언

SET  -> set

DEL  -> delete

GET  -> get

INCR  -> getAtomicLong

DECR  -> getAtomicLong

INCRBY  -> getAtomicLong

DECRBY  -> getAtomicLong

INCRBYFLOAT  -> getAtomicDouble

SETNX  -> trySet

SETEX  -> set

PSETEX  -> set

MSET  -> 해당하는 메소드 없음.

MGET  -> 해당하는 메소드 없음.

MSETNX  -> 해당하는 메소드 없음.

APPEND  -> 해당하는 메소드 없음.

STRLEN  -> size

SETRANGE  -> 해당하는 메소드 없음.

GETRANGE  -> 해당하는 메소드 없음.

GETSET  -> getAndSet


Binary command

SETBIT  -> set

GETBIT  -> get

BITOP  -> and, or, xor, not

BITCOUNT  -> cardinality

BITPOS  -> length(비슷한 메소드)



<< Lettuce Connection Strings Lists >>

Email 답글이 올라오면 이메일로 알려드리겠습니다.