redis

Database/Redis

[Redis] Ubuntu 18.04 Redis 설치

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,..

Database/Redis

[Redis] Redis-cli 필기 노트

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..

항해99/TIL

2021-08-17 항해99 TIL

오늘 한일 Javascript 코딩 테스트를 준비하고 있습니다. 기존에는 Python을 이용해 코딩 테스트를 진행하고 있었지만, Javascript를 이용해 테스트할 수 없으면 지원할 수 있는 회사의 범위가 상당히 좁아질 것이라 생각하였고, 3주밖에 남지 않았지만 꾸준하게 하루에 1~2문제를 풀 수 있도록 시간을 내도록 노력해야 할 것 같습니다. Redis-cli를 사용해봤습니다. MySQL을 사용하던 때와는 다르게 데이터 타입에 따라 삽입, 조회 형식이 달랐고, 모든 형식의 함수를 이해하고 있어야 DB를 사용할 수 있다는 점이 답답하게 다가왔습니다. 그리고 각 데이터별 Expire Time이 설정되어있어 데이터를 일정 시간 사용하지 않는다면 자동으로 삭제되는 경우가 발생했습니다. 이러한 특성은 메모리 ..

Database/Redis

[Redis] Node.js Redis, GeoRedis Module

const redis = require('redis') require('dotenv').config(); const client = redis.createClient({ url: `redis://${process.env.REDIS_HOST}:${process.env.REDIS_PORT}`, // EX) 'redis://localhost:6379' }) const geo = require('georedis').initialize(client) // String client.set('name', 'MyName') client.get('name', (error, reply) => { console.log(rep..

커스텀 리
'redis' 태그의 글 목록