목록Redis (3)
IT recording...
[더 편하게 보고 싶다면 -> 원본 링크] https://adorable-aspen-d23.notion.site/Spring-Spring-Boot-Redis-6ecda14328a34ec1a0e3dc2990a51277 [Spring] Spring Boot + Redis 연결하기 1. Redis란? adorable-aspen-d23.notion.site 4. Redis 설치 4-1. macOS 나는 macOS를 사용하고 있어서 Brew를 사용했다. brew install redis //시간이 좀 많이 걸린다.(기다리기) //redis 시작 brew services start redis //redis-cli 켜기,사용 redis-cli //redis 중지 brew services stop redis //red..
[더 편하게 보고 싶다면 -> 원본 링크] https://adorable-aspen-d23.notion.site/Spring-Spring-Boot-Redis-6ecda14328a34ec1a0e3dc2990a51277 [Spring] Spring Boot + Redis 연결하기 1. Redis란? adorable-aspen-d23.notion.site 4. Redis의 자료구조, 명령어 완전 도움 된 글 [Redis] Redis의 기본 명령어 [Redis] Redis 자료구조 알아보기 아래에서 소개하는 애들은 cli에서 사용하는 명령어들이다. spring 에서는 비슷하게 생긴 거 골라서 쓰면 된다. ex) //cli에서 **zrevrange** keyabc 0 8 //spring에서 Set redisCru..
[더 편하게 보고 싶다면 -> 원본 링크] https://adorable-aspen-d23.notion.site/Spring-Spring-Boot-Redis-6ecda14328a34ec1a0e3dc2990a51277 [Spring] Spring Boot + Redis 연결하기 1. Redis란? adorable-aspen-d23.notion.site 1. Redis란? 트랜잭션이 자주 일어나는 화면에서 속도가 느려짐을 느끼곤 한다. 거의 모든 사용자가 조회하는 화면 등에서 DB에 접근하여 쿼리를 날리는 거니까 그럴만하다. 그럼 어떻게 해결하지? → Redis! 💡 Redis = Remote + Dictionary + Server Redis는 인메모리 데이터 구조 저장소로, 데이터베이스, 캐시, 메시지 브..