![[DB/Redis] Spring 연결](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fcde1CU%2FbtsIQdQcNfO%2FAAAAAAAAAAAAAAAAAAAAAPCgPTrT67Vz8MAXH7Mixxvy2QAyTlF5MPQWHNIZK_Sr%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3Dqm%252FuApGTxK6oxIJnT5F%252BMyA%252B7bs%253D)
@Configurationpublic class RedisConfig { @Value("${REDIS_HOST}") private String host; @Value("${REDIS_PORT}") private Integer port; @Value("${REDIS_PASSWORD}") private String password; @Bean public LettuceConnectionFactory redisConnectionFactory() { RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration(); configuration.setHostName(hos..
![[DB/Redis] Window 설치 + docker에 설치](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbaIY3V%2FbtsIiRUjsIq%2FAAAAAAAAAAAAAAAAAAAAALtvgP0AsQftM-s1xbE5eO2Off-mL-Rgb678yTto83Fc%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DOLdUznyE%252BF2GgbciyjTgEMdUwbs%253D)
https://github.com/microsoftarchive/redis/releases Releases · microsoftarchive/redisRedis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes - microsoftarchive/redisgithub.comRedis레디스는 공식적으로 Linux환경에서 개발되어 리눅스에서 실행되어야 한다. 위 링크를 타고 들어가면 docker없이도 윈도우 환경에서도 실행 가능하나, docker에 리눅스 환경을 ..