[Redis] command

Creat

  • set : 단일 데이터 저장
  • mset : 다중 데이터 저장
  • setbit : 비트 값으로 지정

Read

  • get : 단일 데이터 검색
  • mget : 다중 데이터 검색
  • getbit : 비트 값으로 검색
  • keys : 저장된 모든 key 검색
  • randomkey : 저장된 key 중 하나의 key 랜덤하게 검색
  • exits : 검색 대상의 key 존재 여부 확인

Update

  • rename : 저장된 데이터 값 변경

Delete

  • del : 데이터 삭제

참조

http://redisgate.kr/redis/introduction/redis_intro.php

Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/18/Redis/command/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.