Redis(2)
-
[설정] Redis 설치
환경 : Mac OS https://wlswoo.tistory.com/44 [Redis] Redis 설치 및 간단한 사용 방법 (Mac) Redis는 Remote Dictionary Server의 약자로 key: value 로 값을 저장하는 NoSQL입니다. 인-메모리(In-Memory) 데이터베이스로 메모리에 데이터가 저장됩니다. 싱글 쓰레드로 Atomic 합니다. Redis 설치 Brew 설치.. wlswoo.tistory.com 위 링크에 들어 가시면 맥 환경에서 redis를 설치 하는 방법이 잘 나오니 참고 하시길 바랍니다 ~
2021.08.24 -
[Nest.js] redis 연동
ORM : Typeorm DB : postgresl, redis 프레임워크: Nest.js GO !!!!!! 먼저 redis를 연동 하기 전에 redis를 설치 해야 한다. $brew install redis 설치를 하고 난뒤, 그럼 아래 사진과 같이 뜬다. 이제 redis를 실행 해보자 redis-cli 를 입력 하면, redis에 접속이 된다. import * as redisStore from 'cache-manager-ioredis'; import { CacheModule } from '@nestjs/common'; @Module({ imports: [ CacheModule.register({ store: redisStore, host: 'localhost', port: 6379,// Redis의 ..
2021.08.10