Class GlueRedisDao
java.lang.Object
com.poscoict.glueframework.dao.redis.GlueRedisDao
- All Implemented Interfaces:
GlueGenericRedisDao
,InitializingBean
Redis와 연동하기 위한 Dao Class
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Properties Set후 초기화 작업void
해당 데이터를 삭제한다.org.springframework.data.redis.connection.DataType
getDataType
(String key) 해당 데이터의 타입을 반환한다.Hash타입 데이터의 Operation 클래스를 반환한다.List타입 데이터의 Operation 클래스를 반환한다.Set타입 데이터의 Operation 클래스를 반환한다.String 타입 데이터의 Operation 클래스를 반환한다.Sotred Set타입 데이터의 Operation 클래스를 반환한다.void
opsHashAddMap
(String key, Map<String, Object> value) Redis의 Hash타입의 데이터에 해당 Map을 저장한다.void
opsHashAddObject
(String key, String hashkey, Object value) Redis의 Hash타입의 데이터에 해당 데이터를 저장한다.opsHashGetMap
(String key) Redis에서 Hash타입의 데이터를 가져온다.opsHashGetObject
(String key, String hashkey) Redis의 Hash타입의 데이터에서 해당 Key에 해당하는 데이터를 반환한다.opsHashKeys
(String key) Redis의 Hash타입의 데이터에서 Key값을 반환한다.long
opsListAddListAll
(String key, List<Object> value) Redis에 List타입의 데이터를 저장한다.long
opsListAddObject
(String key, Object value) Redis에서 List타입의 데이터에 해당 값을 Add한다.opsListGetList
(String key) Redis에서 List타입의 데이터를 가져온다.opsListGetList
(String key, long startIndex, long endIndex) Redis에서 List타입의 데이터를 지정한 Row만 가져온다.long
opsSetAddObject
(String key, Object value) Redis에서 Set타입의 데이터에 해당 값을 Add한다.long
opsSetAddSet
(String key, Set<Object> value) Redis에서 Set타입의 데이터에 해당 값을 Add한다.opsSetGetSet
(String key) Redis에서 Set타입의 데이터를 가져온다.opsValueGetObject
(String key) Redis에서 String타입의 데이터를 가져온다.void
opsValueSetObject
(String key, Object value) Redis에 String타입의 데이터를 저장한다.boolean
opsZSetAddObject
(String key, Object value, double score) Redis에서 Sorted Set타입의 데이터에 해당 값을 Add한다.double
opsZSetGetScore
(String key, Object value) Redis에서 Sorted Set타입의 데이터의 Score를 반환한다.opsZSetGetSet
(String key) Redis에서 Sorted Set타입의 데이터를 가져온다.opsZSetGetSet
(String key, long startIndex, long endIndex) Redis에서 Sorted Set타입의 데이터를 지정된 Index의 데이터만 가져온다.opsZSetGetSetByScore
(String key, double startScore, double endScore) Redis에서 Sorted Set타입의 데이터를 지정된 Score의 데이터만 가져온다.long
opsZSetRank
(String key, Object value) Redis에서 Sorted Set타입의 데이터의 순위를 반환한다.long
opsZSetRemoveByScore
(String key, double startScore, double endScore) Redis에서 Sorted Set타입의 데이터에서 해당 범위의 Score를 가진 데이터를 삭제한다.void
setConnectionFactory
(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory) setter method for DI.void
setKeySerializer
(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.void
setSerializer
(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.void
setValueSerializer
(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.long
해당 데이터를 Row 수.
-
Constructor Details
-
GlueRedisDao
public GlueRedisDao()
-
-
Method Details
-
setConnectionFactory
public void setConnectionFactory(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory) setter method for DI.- Parameters:
connectionFactory
-
-
setSerializer
public void setSerializer(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.- Parameters:
serializer
-
-
setKeySerializer
public void setKeySerializer(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.- Parameters:
serializer
-
-
setValueSerializer
public void setValueSerializer(org.springframework.data.redis.serializer.RedisSerializer<?> serializer) setter method for DI.- Parameters:
serializer
-
-
afterPropertiesSet
Properties Set후 초기화 작업- Specified by:
afterPropertiesSet
in interfaceInitializingBean
- Throws:
Exception
-
getOpsForValue
String 타입 데이터의 Operation 클래스를 반환한다.- Specified by:
getOpsForValue
in interfaceGlueGenericRedisDao
- Returns:
- ValueOperations
-
getOpsForList
List타입 데이터의 Operation 클래스를 반환한다.- Specified by:
getOpsForList
in interfaceGlueGenericRedisDao
- Returns:
- ListOperations
-
getOpsForSet
Set타입 데이터의 Operation 클래스를 반환한다.- Specified by:
getOpsForSet
in interfaceGlueGenericRedisDao
- Returns:
- SetOperations
-
getOpsForZSet
Sotred Set타입 데이터의 Operation 클래스를 반환한다.- Specified by:
getOpsForZSet
in interfaceGlueGenericRedisDao
- Returns:
- ZSetOperations
-
getOpsForHash
Hash타입 데이터의 Operation 클래스를 반환한다.- Specified by:
getOpsForHash
in interfaceGlueGenericRedisDao
- Returns:
- HashOperations
-
getDataType
해당 데이터의 타입을 반환한다.- Specified by:
getDataType
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 확인할 데이터의 Key- Returns:
- DataType
-
delete
해당 데이터를 삭제한다.- Specified by:
delete
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 삭제할 데이터의 Key
-
size
해당 데이터를 Row 수.- Specified by:
size
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- long 데이터 Row 수
-
opsValueGetObject
Redis에서 String타입의 데이터를 가져온다.- Specified by:
opsValueGetObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- Object Redis데이타
-
opsValueSetObject
Redis에 String타입의 데이터를 저장한다.- Specified by:
opsValueSetObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에 저장할 데이터의 Keyvalue
- Redis에 저장할 데이타
-
opsListGetList
Redis에서 List타입의 데이터를 가져온다.- Specified by:
opsListGetList
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- List<Object> Redis데이타
-
opsListGetList
Redis에서 List타입의 데이터를 지정한 Row만 가져온다.- Specified by:
opsListGetList
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 KeystartIndex
- Redis에서 가져올 데이터의 시작 IndexendIndex
- Redis에서 가져올 데이터의 마지막 Index- Returns:
- List<Object> Redis데이타
-
opsListAddObject
Redis에서 List타입의 데이터에 해당 값을 Add한다.- Specified by:
opsListAddObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에 Add 데이타- Returns:
- long 저장된 데이타의 List Index값
-
opsListAddListAll
Redis에 List타입의 데이터를 저장한다.- Specified by:
opsListAddListAll
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에 저장할 데이타- Returns:
- long 저장된 데이타의 List Index값
-
opsSetGetSet
Redis에서 Set타입의 데이터를 가져온다.- Specified by:
opsSetGetSet
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- Set<Object> Redis데이타
-
opsSetAddObject
Redis에서 Set타입의 데이터에 해당 값을 Add한다.- Specified by:
opsSetAddObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에 저장할 데이타- Returns:
- long 저장된 데이타의 Row수(이미 존재하는 데이터는 제외)
-
opsSetAddSet
Redis에서 Set타입의 데이터에 해당 값을 Add한다.- Specified by:
opsSetAddSet
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에 저장할 데이타- Returns:
- long 저장된 데이타의 Row수(이미 존재하는 데이터는 제외)
-
opsZSetGetSet
Redis에서 Sorted Set타입의 데이터를 가져온다.- Specified by:
opsZSetGetSet
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- Set<Object> Redis데이타
-
opsZSetGetSet
Redis에서 Sorted Set타입의 데이터를 지정된 Index의 데이터만 가져온다.- Specified by:
opsZSetGetSet
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 KeystartIndex
- Redis에서 가져올 데이터의 시작 IndexendIndex
- Redis에서 가져올 데이터의 마지막 Index- Returns:
- Set<Object> Redis데이타
-
opsZSetGetSetByScore
Redis에서 Sorted Set타입의 데이터를 지정된 Score의 데이터만 가져온다.- Specified by:
opsZSetGetSetByScore
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 KeystartScore
- Redis에서 가져올 데이터의 시작 ScoreendScore
- Redis에서 가져올 데이터의 마지막 Score- Returns:
- Set<Object> Redis데이타
-
opsZSetAddObject
Redis에서 Sorted Set타입의 데이터에 해당 값을 Add한다.- Specified by:
opsZSetAddObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에 저장할 데이타score
- Redis에 저장할 데이타의 Score- Returns:
- boolean 저장 여부
-
opsZSetGetScore
Redis에서 Sorted Set타입의 데이터의 Score를 반환한다.- Specified by:
opsZSetGetScore
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에서 가져올 데이타- Returns:
- double score 데이타의 Score
-
opsZSetRank
Redis에서 Sorted Set타입의 데이터의 순위를 반환한다.- Specified by:
opsZSetRank
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 Keyvalue
- Redis에서 가져올 데이타- Returns:
- double 데이타의 순위
-
opsZSetRemoveByScore
Redis에서 Sorted Set타입의 데이터에서 해당 범위의 Score를 가진 데이터를 삭제한다.- Specified by:
opsZSetRemoveByScore
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis 데이터의 KeystartScore
- Redis에서 삭제할 데이타 범위의 시작 ScoreendScore
- Redis에서 삭제할 데이타 범위의 마지막 Score- Returns:
- long 삭제 데이터 수
-
opsHashGetMap
Redis에서 Hash타입의 데이터를 가져온다.- Specified by:
opsHashGetMap
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- Map Redis데이타
-
opsHashGetObject
Redis의 Hash타입의 데이터에서 해당 Key에 해당하는 데이터를 반환한다.- Specified by:
opsHashGetObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Keyhashkey
- Hash데이터의 Key- Returns:
- Object Redis데이타
-
opsHashAddObject
Redis의 Hash타입의 데이터에 해당 데이터를 저장한다.- Specified by:
opsHashAddObject
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Keyhashkey
- Hash데이터의 Keyvalue
- Hash데이터에 저장할 값
-
opsHashAddMap
Redis의 Hash타입의 데이터에 해당 Map을 저장한다.- Specified by:
opsHashAddMap
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 저장할 데이터의 Keyvalue
- 저장할 map데이터
-
opsHashKeys
Redis의 Hash타입의 데이터에서 Key값을 반환한다.- Specified by:
opsHashKeys
in interfaceGlueGenericRedisDao
- Parameters:
key
- Redis에서 가져올 데이터의 Key- Returns:
- Set<String> Hash타입의 데이터의 Key값들
-