Redis 기본 명령어 | redis 데이터 저장/조회 명령어# 데이터 저장 (키 : whee, 값 : in the mood)127.0.0.1:6379> set whee:name "in the mood" // 띄워쓰기가 있을 땐 "" 사용OK# 데이터 저장 (키 : job, 값 : singer)127.0.0.1:6379> set whee:job singerOK# 데이터 조회127.0.0.1:6379> get whee:name"in the mood"# 데이터 조회127.0.0.1:6379> get whee:job"singer" | 저장된 모든 키 정보 보기127.0.0.1:6379> keys *1) "whee:job"2) "whee:name" | 저장된 키 삭제# 특정 키 삭제127.0.0.1:6379> ..