일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Fluent-bit
- datatype
- ansible
- Algorithm
- g1gc
- lambda
- programmers
- redis
- 연산자
- Spring Security
- 자료형
- zgc
- JPA
- If
- jvm
- JavaScript
- datastructure
- Kotlin
- SpringBoot Initializr
- quicksort
- While
- Java
- IAC
- 기초
- MergeSort
- Sprint Security
- Class
- UserDetails
- C++
- For
- Today
- Total
목록DataBase (2)
뭐라도 끄적이는 BLOG
implementation 'org.springframework.boot:spring-boot-starter-data-redis' implementation 'org.springframework.boot:spring-boot-starter-web' 사용한 Dependency는 2가지 이다. spring: data: redis: host: 192.168.0.18 port: 6379 spring boot 2.x버전에서는 spring.redis.host와 spring.redis.port에 설정을 하지만 spring boot 3.x부터는 spring.data.redis에서 설정을 해야 한다. @RestController public class HelloController { @Autowired StringRed..
Redis (Remote Dictionary Server) Redis는 아래 3가지 용도로 주로 사용된다. Storage: 데이터 저장소의 역할을 한다. Database: DBMS의 역할을 수행할 수도 있다. Middleware: 어플리케이션이 이용할 수 잇는 유용한 기능을 제공한다. In Memory DB이기 때문에 빠르게 데이터를 저장및 읽을 수 있다. 하지만 휘발성이기 때문에 중요한 데이터를 저장하기 보단 Session과 같은 단기적인 데이터 또는 Cache로 사용하여 빠르게 데이터를 불러오는데 사용한다. 어느정도 영속성도 확보할 수 있긴 하지만 절대적인 무결성을 위해서는 데이터베이스를 이용하는 것이 맞다. Redis는 Key-Value 저장서로 List, Hash, Set, 정렬된 Set등 여러 ..