본문 바로가기

전체 글59

[AWS/SSA-C03] Module 4 - 비용에 최적화된 아키텍처 설계 Design Cost-Optimized Architectures Self-paced digital training on AWS - AWS Skill Builder 를 보며 정리한 내용입니다. Self-paced digital training on AWS - AWS Skill Builder Your learning center to build in-demand cloud skills. Skill Builder provides 500+ free digital courses, 25+ learning plans, and 19 Ramp-Up Guides to help you expand your knowledge. Courses cover more than 30 AWS solutions for various skill levels. Skill Bu explore.skillbu.. 2023. 3. 6.
[AWS/SSA-C03] Module 3 - 보안 아키텍처 설계 Specify Secure Applications and Architecture Self-paced digital training on AWS - AWS Skill Builder 를 보며 정리한 내용입니다. Self-paced digital training on AWS - AWS Skill Builder Your learning center to build in-demand cloud skills. Skill Builder provides 500+ free digital courses, 25+ learning plans, and 19 Ramp-Up Guides to help you expand your knowledge. Courses cover more than 30 AWS solutions for various skill levels. Skill Bu explore.skillbu.. 2023. 3. 6.
[Redis/Java] HashMap 데이터 정수(int,long)로 저장하기 게시글 작성 시 조회수 관련 데이터를 Redis에 저장하려고 한다. 추후 어떤 필드가 추가될지 모르니 Redis에 hashMap 형태로 저장할 예정이다. key(랜덤 생성) : { postId: 1, postView: 1 } 처음엔 코드를 아래처럼 field 부분에 데이터 이름과 value부분에 각각 long&int를 넣어주었는데 public void setViewCount(Long postId){ HashOperations hashOps = stringRedisTemplate.opsForHash(); String key = UUID.randomUUID().toString(); Map values = new HashMap(); values.put("postId", postId); values.put("p.. 2023. 3. 5.
[AWS/SSA-C03] Module 2 - 고성능 아키텍처 설계 Design Performant Architectures Self-paced digital training on AWS - AWS Skill Builder 를 보며 정리한 내용입니다. Self-paced digital training on AWS - AWS Skill Builder Your learning center to build in-demand cloud skills. Skill Builder provides 500+ free digital courses, 25+ learning plans, and 19 Ramp-Up Guides to help you expand your knowledge. Courses cover more than 30 AWS solutions for various skill levels. Skill Bu explore.skillbu.. 2023. 3. 3.
[AWS/SSA-C03] Module 1 - 복원력을 갖춘 아키텍처 설계 Design Resilient Architectures Self-paced digital training on AWS - AWS Skill Builder 를 보며 정리한 내용입니다. Self-paced digital training on AWS - AWS Skill Builder Your learning center to build in-demand cloud skills. Skill Builder provides 500+ free digital courses, 25+ learning plans, and 19 Ramp-Up Guides to help you expand your knowledge. Courses cover more than 30 AWS solutions for various skill levels. Skill Bu explore.skillbu.. 2023. 3. 3.
[Redis] Redis 개요 이번 개발에 Redis를 사용할 일이 있어 짧게나마 공부중이다 이전에 몽고디비를 사용해본 적이 있어 딕셔너리 타입의 데이터가 익숙하긴 하다 우선 Redis는 Remote Dictionary Server 라고해서 데이터 타입이 딕셔너리 타입으로 데이터가 메모리에 저장되는 서버이다. (데이터가 기본적으론 휘발된다) Redis를 서버에서 어떻게 사용할까 이전에 Redis의 문제점에 대해 알고 사용해야 한다. 1. Redis는 싱글스레드이기 때문에 한꺼번에 여러개의 요청이 들어온다면 한개씩 처리한다. 그리고 특정 요청이 너무 많은 시간을 잡아먹거나 해당 요청이 실패하면 그 이후의 요청도 전부 실패하게 된다. 그렇기에 너무 오랜시간이 소요되는 요청은 주의해야한다. Redis에서 최대 시간복잡도는 O(N)이 걸리는.. 2023. 2. 21.