Document : https://redis.io/topics/quickstart Redis Quick Start – Redis *Redis Quick Start This is a quick start document that targets people without prior experience with Redis. Reading this document will help you: Download and compile Redis to start hacking. Use redis-cli to access the server. Use Redis from your application redis.io $ sudo apt-get install build-essential -y Linux에서 make, gcc,..
Server가 절전모드로 전환될 경우 Redis는 전부 사라진다. == Redis Redis In-memory 특성으로 접근 속도가 빠르다. Key-Value, 자료 구조 데이터를 유지할 수 있음 Pub/Sub 서버로 많이 사용 단점 : 데이터가 정확하게 유지됨을 보장하지 않음 $ redis-cli Redis를 CLI 형식으로 실행할 때 사용한다. 6379> shutdown Redis Server를 중지한다. String 6379> set key Hello 6379> get key key-Value 형식으로 key라는 이름에 Hello를 저장한다. key-Value 형식으로 key에 들어있는 값을 출력한다. Object 6379> hmset key field value [field value ...] e..
정상적인 이메일, 비밀번호 검사 SELECT DISTINCT 1 FROM Users WHERE email = 'dddd@naver.com' AND password = 'SE7vYnBwximuz/hD1hsjM1n83RTUOIn8wLmwwFh2TdDAwQdLAZlqz3Vcfaxg/AtAYMK5+RGpCoIFiImpzzLnCw=='; 사용자의 정보를 조회할 때 모든 정보를 조회하는 것이 아닌, 특정 조건을 만족하는 데이터의 존재 유무를 바탕으로 로그인을 진행합니다. 해당 SQL에서 SELECT DISTINCT 1 부분에서 조건에 만족하는 데이터가 있을 경우 1이라는 데이터가 출력되도록 예시가 구성되어있습니다. 입력 데이터 email : dddd@naver.com password : SE7vYnBwximuz/h..