IT/Redis2 2021-10-19-기본 명령어 layout : post title : "기본 명령어" category : Redis Redis 는 여러 개의 데이터 타입을 저장할 수 있기 때문에 각각의 명령어가 여러개 존재한다. Redis Commands 참고 Redis 는 Single Thread 기반이기 때문에 keys, flushall, flushdb, getall 등 일반적으로 생각했을 때 O(N) 의 시간복잡도를 가질 것 같은 명령어는 운영 환경에서 사용하지 않는것이 좋다. 1. String 가장 기본적인 Value 타입 저장 set {key} {value} : key, value 를 저장 mset {key} {value} [{key} {value} ...] : 여러 개의 key, value 를 한번에 저장 setex {key} {secon.. 2023. 2. 27. 2021-10-19-spring boot 연동 layout : post title : "spring boot 연동" category : Redis 레디스 라이브러리 추가 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.5.5' yml 파일에 설정 추가 spring: redis: host: localhost port : 6379 // 디폴트 config 파일 생성 @Configuration @EnableRedisRepositories(enableKeyspaceEvents = RedisKeyValueAda.. 2023. 2. 27. 이전 1 다음