일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- designpatternn
- Implementation
- DP
- storagemanger
- db
- database
- json #typescript
- SW
- entityrelational
- datamodel
- kafka
- Today
- Total
목록프로그래밍 (39)
i.am.developer
https://primer.guide/ Primer: Crypto 101 – Primer "Crossroads", NFT by Danguiz (2021) Primer: Crypto 101 Hello internet stranger, and welcome to Primer. You are reading this because you're a smart and curious person looking to learn more about crypto but don't really know where to begin. Perhaps you were primer.guide 탈중앙화 금융 (줄여서 디파이, DeFi)는 이더리움같은 블록체인으로 만들어진 공개된 금융 앱들을 말해. 이러한 앱들은 전세계의 모든사람들이 ..
https://primer.guide/ Primer: Crypto 101 – Primer "Crossroads", NFT by Danguiz (2021) Primer: Crypto 101 Hello internet stranger, and welcome to Primer. You are reading this because you're a smart and curious person looking to learn more about crypto but don't really know where to begin. Perhaps you were primer.guide 비트코인이 나온 뒤에, 사람들은 그냥 값을 저장하는 것을 뛰어넘는 블록체인의 활용을 생각하기 시작했어. 그런 사람들 중 한 명이 캐나다에서 살..
https://primer.guide/ Primer: Crypto 101 – Primer "Crossroads", NFT by Danguiz (2021) Primer: Crypto 101 Hello internet stranger, and welcome to Primer. You are reading this because you're a smart and curious person looking to learn more about crypto but don't really know where to begin. Perhaps you were primer.guide 비트코인은 첫번째 암호화폐이자, 시장에서 가장 큰 화폐야. (2021년 기준으로 10조원) 비트코인은 세계 최초의 공개된 페이먼트 네트워크이야..
원문: https://primer.guide/ Primer: Crypto 101 – Primer "Crossroads", NFT by Danguiz (2021) Primer: Crypto 101 Hello internet stranger, and welcome to Primer. You are reading this because you're a smart and curious person looking to learn more about crypto but don't really know where to begin. Perhaps you were primer.guide History 시작하기 전에 역사적인 문맥을 이해하는게 중요해. 블록체인의 개념이 발생할 수 있게 하고 결국엔 Bitcoin을 탄생시킨..
원문: https://primer.guide/ Primer: Crypto 101 – Primer "Crossroads", NFT by Danguiz (2021) Primer: Crypto 101 Hello internet stranger, and welcome to Primer. You are reading this because you're a smart and curious person looking to learn more about crypto but don't really know where to begin. Perhaps you were primer.guide Primer: Crypto 101 안녕 인터넷 친구들! Primer에 온걸 환영해. 이걸 읽고 있다는건 너는 똑똑하고 호기심 많은 사람..
https://www.valentinog.com/blog/redux/#read-this-redux-where-are-we-now Redux란 무엇? REDUX에서 쓰이는 것들 Action, Reducer, Middleware 가 있다. 근데 그것들을 묶어주는 것이 바로 Store이다. Redux에서 Store는 magic이며 모든 application의 state를 갖고 있는 것이다. import { createStore } from "redux"; import rootReducer from "../reducers/index"; const store = createStore(rootReducer); export default store; 보다시피 store는 createStore의 반환값이다. creat..

문제 클루 서비스에서 글을 작성하는 API가 성능이 너무 안좋았다. 응답시간이 짧을때도 있지만 늦을때는 9초까지 걸렸다. 원인 글을 작성하면 성과로 Point를 주는데, 그와 관련된 Logging을 PointLog 테이블에 저장하도록 설정해두었음. 문제는 이 PointLog 테이블의 Primary Key가 Timestamp로 설정하고 있던 것! timestamp를 primary key로 설정하는 것에 대한 의견1, 의견2. 해결 Primary Key를 따로 AutoIncrement한 값으로 설정해야했다. 생각해보면 어차피 로깅을 목적으로 하는 값이니까 GeneratedValue 로 해도 괜찮을텐데 왜 이렇게 했었을까. 조금 어려웠던 건 운영중인 서비스에 대해서 Table 스키마를 바꾸는거라 어떻게해야할지..

DB의 정의 데이터베이스(Database) 어떤 목적을 갖고 관련된 데이터를 잘 모아놓은 집합. A well organized collection of (relevant) data to an organization Database Management System(DBMS) 데이터베이스를 관리하고 저장하는 프로그램 모음. 사용자에게 DB에 효과적인 접근방법들을 제공해준다. Transactional, Secure, Reliable, etc. DB를 사용하는 이유 사실 DB, DBMS가 없어도 File System(OS에서 제공하는 FS)으로도 충분히 Data를 저장하고 관리할 수 있다. 파일시스템으로 데이터를 관리한다는게 무엇일까? 우리는 급하게 어떤 메모를 해야할 때, MySQL, MSSQL 과 같은 DB..