Redis - Redis-cli 기본 사용법
Linux Server/Redis
2022. 7. 6. 09:00
Redis - Redis-cli 기본 사용법
이번 포스팅에서는 Redis-cli 사용방법에 대해서 알아보도록 하겠습니다.
Linux Redis 이전글 |
https://server-talk.tistory.com/471 - redis - In-Memory - 알아보기
https://server-talk.tistory.com/472 - Redis - 서버 설치 및 기본설정 알아보기
Redis-cli 기본 사용법 |
1. Redis-cli 접속방법
사용법 : redis-cli -h [접속 IP] -p [포트] -a [패스워드]
redis-cli -h 127.0.0.1 -p 6379 -a foobared
127.0.0.1:6379>
2. Redis-cli 데이터 저장
사용법 : SET [Key] [Value]
127.0.0.1:6379> SET redis cacheserver
OK
3. Redis-cli 데이터 가져오기
사용법 : GET [Key]
127.0.0.1:6379> GET redis
"cacheserver"
4. Redis-cli 모든 데이터 조회
127.0.0.1:6379> KEYS *
5. Redis-cli 저장된 데이터 삭제
사용법 : DEL [Key]
127.0.0.1:6379> DEL redis
(integer) 1
6. Redis-cli Redis 서버의 모든 데이터 지우기
127.0.0.1:6379> FLUSHALL
OK