본문 바로가기

저장소

(3)
[Git] github 자주 쓰는 명령어 모음 : status, add, commit, push, checkout, restore, pull, remote, vi, reset ... 변경 상태 확인하기 $ git status 모든 변경사항 스테이징 (원격저장소에 업로드) $ git add . 스테이징 취소 (add 취소) $ git reset HEAD 파일명.js 커밋 (스테이징된 변경사항을 로컬저장소에 업로드) $ git commit -m "my commit" 가장 최근 커밋을 취소하기 $ git reset HEAD^ 커밋 메시지 수정 $ git commit --amend -m "메시지 수정" 푸시 (로컬저장소 내용을 깃허브에 업로드) $ git push origin main(or master or branch name...) 풀 (깃허브 내용 다운로드 받기) $ git pull origin main(or master or branch name...) (git add 전) 수정한..
[DB] Indexing structures for files / 물리적 DB설계 Index structures for files index : 추가적인 보조접근구조, 검색속도 증가, 대체방법을 제공함, 효율적 검색 Single-level ordered indexes primary, secondary, clustering ISAM : Indexed Sequential Access Method Multilevel indexes B trees, B+ trees Types of Single-level ordered indexes Primary index : 키 필드 정렬 파일에서 정렬 키 필드에 대해 정의된 인덱스 Clustering index : 키가 아닌걸로 정렬된 파일에서 정렬 필드에 대해 정의된 인덱스 Secondary index : any nonordering field Prima..
[DB] Disk, 파일구조, Hashing, 저장소 설계 DBs are stored physicaly as files of records stored on magnetic disks. storage hierarchy primary storage : 주기억장치 operated on directly by the CPU Secondary storage : 보조기억장치, 온라인 Tertiary storage : 오프라인 아카이브 (온라인으로 로드 필요) Memory Hierarchies and storage devices 상위 저장소 : 빠름, 작음, 비쌈 하위 저장소 : 느림, 큼, 쌈 Storage of DBs 물리적 DB 설계 files of records : locate them efficiently Primary FIle organizations heap f..

728x90