Redisson Strings

Redis Developer Course 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 답글이 올라오면 이메일로 알려드리겠습니다.