Unique ID Generation Strategy in Distributed Systems
Unique ID Generation Strategy in Distributed Systems 분산 환경에서 고유한 키를 생성하는 것에는 많은 고려사항이 있다. https://blog.devtrovert.com/p/how-to-generate-unique-ids-in-distributed https://medium.com/@sandeep4...
Unique ID Generation Strategy in Distributed Systems 분산 환경에서 고유한 키를 생성하는 것에는 많은 고려사항이 있다. https://blog.devtrovert.com/p/how-to-generate-unique-ids-in-distributed https://medium.com/@sandeep4...
2024-09-02-TIL Today I Learned 토큰의 발급 주체가 아닌 프로젝트에서의 인증 방식 토큰의 발급 주체가 아닌 서버를 구축하면서 토큰을 그대로 DB에 토큰 담고 스레드 로컬에서 (like caching) hit되는 토큰을 캐싱하는 방식으로 성능 향상을 하도록 구성하는게 일반적 인스타그램 처럼 글로벌한 서비스에서 1억개의 세...
2024-08-28-TIL Today I Learned Infinite Scroll vs Pagination https://velog.io/@eunoia/%EB%AC%B4%ED%95%9C-%EC%8A%A4%ED%81%AC%EB%A1%A4Infinite-scroll-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0 http...
2024-08-27-TIL Today I Learned Multi-stage builds 컨테이너 이미지를 만들면서 빌드 등에는 필요하지만 최종 커넽이너 이미지에는 필ㅛ없는 환경을 제거할 수 있도록 단계를 나누어서 베이스 이미지를 만드는 방법 https://docs.docker.com/build/building/multi-stage/ ...
2024-08-20-TIL Today I Learned Spring Data JPA and Interface Projections 인터페이스 프로젝션을 사용했더니 배치에서 성능이 현저히 떨어진 것을 확인할 수 있었다. GC가 안되어서 메모리 용량이 부족해진 것일까? https://www.youtube.com/watch?v=XtpZvD8zt...
2024-08-19-TIL Today I Learned 이력 유형 https://blog.naver.com/db_guide/150122285707 https://rrhh234cm.tistory.com/32 점 이력, 선분 이력 https://blog.naver.com/l1523/221795451017 점 조건, 선분 조건 ...
2024-08-13-TIL Today I Learned P95 https://kscodebase.tistory.com/544#:~:text=%EC%9D%B4%20%EB%95%8C%20%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%20%EB%B0%B1%EB%B6%84%EC%9C%84,%EC%B4%88%20%EC%9D%B4%...
2024-08-12-TIL Today I Learned Caching Best Practices 캐싱을 적용할 대상은 어떻게 정하는 것이 좋을까? 캐시(Cache)는 자주 접근하는 데이터를 임시로 저장해두어 시스템 성능을 개선하는 데 사용됩니다. 캐시를 적용하기에 적절한 부분은 다음과 같습니다: ### 1. **데이터베이스 조회 결과** ...
2024-08-09-TIL Today I Learned ACL Best Practices 접근제어 대상의 종류는 menu, action, object, context로 메뉴 선택 권한에서부터 CRUD 제어, 버튼 하나하나에 대한 접근제어, 그리고 같은 버튼이나 페이지에서도 문맥에 따라 제어를 달리 적용할 수도 있다. https://docs...
2024-08-08-TIL Today I Learned Spring Boot Caching with Redis https://medium.com/simform-engineering/spring-boot-caching-with-redis-1a36f719309f https://www.baeldung.com/spring-boot-redis-c...