콘텐츠로 이동

CS References (EN/KR)

cs-references 전체 항목을 한국어/영어로 선택해서 볼 수 있는 인덱스입니다.

  • 언어 선택: 한국어, English
  • 카테고리 선택: 코어 시스템, 네트워킹, 언어와 런타임 등

카테고리Category 게시글Post 요약Summary
코어 시스템 Core Systems 컴퓨터 아키텍처 내부 동작 Computer Architecture Internals 파이프라인 단계, 해저드, 분기 예측, 비순차 실행, 캐시 계층 Pipeline stages, hazards, branch prediction, out-of-order execution, cache hierarchy
코어 시스템 Core Systems 컴파일러 내부 동작 Compiler Internals 렉서/파서 내부, AST→IR 변환, SSA, 레지스터 할당, 명령어 선택 Lexer/parser internals, AST to IR lowering, SSA, register allocation, instruction selection
코어 시스템 Core Systems 운영체제 내부 동작 Operating Systems Internals 스케줄링, 가상 메모리, 저널링 파일시스템, IPC 메커니즘 Scheduling, virtual memory, journaling file systems, IPC mechanisms
코어 시스템 Core Systems 시스템 프로그래밍 내부 동작 Systems Programming Internals 메모리 순서, 시스템콜 경로, futex, 소유권 모델, 할당기 내부 Memory ordering, syscall path, futex, ownership model, allocator internals
네트워킹 Networking 네트워킹 내부 동작 Networking Internals TCP 상태 전이, 혼잡 제어, TLS 1.3, DNS, BGP, HTTP/2 TCP lifecycle, congestion control, TLS 1.3, DNS resolution, BGP, HTTP/2
언어와 런타임 Languages and Runtimes C/C++ 내부 동작 C/C++ Internals 객체 모델, UB/메모리 모델, 템플릿, 스마트 포인터, LLVM, 새니타이저 Object model, UB and memory model, templates, smart pointers, LLVM, sanitizers
언어와 런타임 Languages and Runtimes Python 내부 동작 Python Internals 바이트코드 실행, 참조 카운트/GC, GIL, 디스크립터, import 시스템 Bytecode execution, refcount and GC, GIL, descriptor protocol, import system
언어와 런타임 Languages and Runtimes Java 내부 동작 Java Internals 클래스 로딩, 바이트코드 검증, JIT 티어, GC, Java 메모리 모델 Class loading, bytecode verification, JIT tiers, GC, Java memory model
언어와 런타임 Languages and Runtimes 프로그래밍 언어 내부 동작 Programming Languages Internals Go/Rust/Kotlin/Scala 런타임 구조와 타입 추론 Runtime architecture of Go, Rust, Kotlin, Scala and type inference
언어와 런타임 Languages and Runtimes 함수형 프로그래밍 내부 동작 Functional Programming Internals 람다 계산, 지연 평가, HM 추론, 모나드, 영속 자료구조, STM Lambda calculus, laziness, HM inference, monads, persistent structures, STM
데이터베이스와 데이터 Databases and Data 데이터베이스 시스템 내부 동작 Database Systems Internals B+트리, WAL, MVCC, 옵티마이저, 버퍼 매니저, 락 매니저 B+tree, WAL, MVCC, optimizer, buffer manager, lock manager
데이터베이스와 데이터 Databases and Data 자료구조 내부 동작 Data Structures Internals RB 트리, 스킵 리스트, 해시맵, 유니온파인드, 피보나치 힙 RB tree, skip list, hash map, union-find, Fibonacci heap
데이터베이스와 데이터 Databases and Data 데이터 마이닝/빅데이터 내부 동작 Data Mining & Big Data Internals MapReduce, Spark lineage, Flink 워터마크, 컬럼 저장, LSM 컴팩션 MapReduce, Spark lineage, Flink watermarking, columnar formats, LSM compaction
보안 Security 보안 내부 동작 Security Internals AES-GCM, RSA/ECDH, TLS 키 스케줄, 해시, 인증 프로토콜, 부채널 방어 AES-GCM, RSA/ECDH, TLS key schedule, hashing, auth protocols, side-channel defense
클라우드와 데브옵스 Cloud and DevOps 클라우드/AWS 내부 동작 Cloud & AWS Internals Nitro 하이퍼바이저, VPC 데이터 경로, S3 내구성, Lambda microVM, IAM 평가 Nitro hypervisor, VPC data path, S3 durability, Lambda microVM, IAM evaluation
클라우드와 데브옵스 Cloud and DevOps DevOps/Linux 내부 동작 DevOps & Linux Internals systemd 활성화, cgroup v2, 네임스페이스, seccomp, audit, netfilter systemd activation, cgroup v2, namespaces, seccomp, audit, netfilter
클라우드와 데브옵스 Cloud and DevOps Docker/Kubernetes CS 내부 동작 Docker & Kubernetes CS Internals BuildKit, etcd watch, kube-proxy 모드, Helm 수명주기, 어드미션 제어 BuildKit, etcd watch, kube-proxy modes, Helm lifecycle, admission control
클라우드와 데브옵스 Cloud and DevOps 마이크로서비스 내부 동작 Microservices Internals 서비스 메시, 서킷 브레이커, 트레이싱 컨텍스트, 게이트웨이 제어, 사가 패턴 Service mesh, circuit breaker, tracing context, gateway throttling, saga patterns
알고리즘과 수학 Algorithms and Mathematics 알고리즘 CS 레퍼런스 내부 동작 Algorithms CS Reference Internals DP DAG, 네트워크 플로우, KMP, 복잡도 계층, 확률 자료구조 DP DAG, network flow, KMP, complexity classes, probabilistic data structures
알고리즘과 수학 Algorithms and Mathematics 수학/과학 컴퓨팅 내부 동작 Math & Scientific Computing Internals IEEE 754, LU/SVD, FFT, 최적화, 샘플링, 쌍대성 IEEE 754, LU/SVD, FFT, optimization, sampling, duality
AI/ML과 데이터 과학 AI/ML and Data Science ML/AI 내부 동작 ML & AI Internals 역전파, 어텐션, 트랜스포머, 정규화, 최적화, CNN/ResNet Backprop, attention, transformers, normalization, optimization, CNN/ResNet
플랫폼과 모바일 Platform and Mobile 모바일/안드로이드 내부 동작 Mobile & Android Internals Binder IPC, ART/JIT/AOT, Compose 재구성, 렌더링 파이프라인, 카메라 스택 Binder IPC, ART/JIT/AOT, Compose recomposition, rendering pipeline, camera stack
플랫폼과 모바일 Platform and Mobile 웹/프론트엔드 내부 동작 Web & Frontend Internals 브라우저 렌더링, 이벤트 루프, V8 JIT, React 재조정, 서비스 워커 Browser rendering, event loop, V8 JIT, React reconciliation, service worker
소프트웨어 공학 Software Engineering 소프트웨어 공학 내부 동작 Software Engineering Internals 패턴, SOLID, DDD, 이벤트 소싱, CQRS, 헥사고날 아키텍처 Patterns, SOLID, DDD, event sourcing, CQRS, hexagonal architecture
소프트웨어 공학 Software Engineering 기타 CS 내부 동작 Miscellaneous CS Internals 그래픽스, 레이트레이싱, ECS, 메시징, IaC, SRE, 관측성, 캐시 일관성 Graphics, ray tracing, ECS, messaging, IaC, SRE, observability, coherence
분산 시스템 레퍼런스 Distributed Systems Reference 분산 시스템 CS 내부 동작 Distributed Systems CS Internals 합의 알고리즘, CAP, 트랜잭션, 시계 동기화, CRDT, 가십, 안티엔트로피, 분산 락 Consensus, CAP, transactions, clocks, CRDT, gossip, anti-entropy, locks

참고: 한국어 버전은 한국어 안내 + 원문 병행 구조입니다. 언어 선택은 목록 노출 기준이며, 각 문서 내부에서 원문과 함께 확인할 수 있습니다.