Merge 된 브랜치 취소하기 git reset --merge 60f3339(<-머지된 커밋)git push -f origin HEAD:머지를 하기전 브랜치이름, 머지를 수행한 ...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2020년 11월 23일 월요일
2020년 11월 17일 화요일
Mysql Explain 다시 생각하기
회사 꼬맹이 한테 explain 해보라고 하고선,정작 나는 다 까먹었다.http://www.24w.jp/blog/?p=250 type 에 index라고 되어있으면 index 테이블을 풀스캔하고 있는거라 느린거라고함.key_len이 생각한대로 수치가 나오는지(int는 4바이트) 호가인쿼리 뒤에 \G 를 넣어서 세로로 출력그리고 팁으로 MySQL 성능 죽이는 17가지 방법 https://denodo1.tistory.com/310?category=357842에서 "- 타입 컬럼에 index 써있는거랑 Extra 컬럼에 index 써있는거랑 “매우 큰” 차이 있음" 가 위에 type 에 대한 말임.정규화는 필수. 그냥 막 테이블에 새칼럼 쑤셔넣는짓은 하지마.정규화화 더불어 쿼리...