https://www.yes24.com/product/goods/77203347
감상 2026-01-25 8088 CPU가 달린 IBM XT를 쓰던 추억과 정보처리기사 시험 공부 하던 때가 생각난다.
메모 아래 개념 스스로 설명해보기
회로 기호도 (p63) 2의 보수와 1의 보수 (p90) 부동수점 숫자의 부정확성 (p96) 와이어드 OR (p105) 리틀 엔디언과 빅 엔디언 (p163) DMA (p210) 인상 깊은 단락 p403 Tiny Basic
http://www.yes24.com/Product/Goods/6960931
대용량데이터 처리를 위한 MySQL 최적화 “useServerPrepStmt=true” 옵션 MySQL 서버에서 preparedStatement 를 파싱한 정보를 재활용하도록 유도하는 옵션 MySQL Connector/J에서 useServerPrepStmt 옵션의 기본값은 false 별도의 설정을 하지 않으면 JDBC 드라이버가 PreparedStatement를 서버 측에서 준비(prepare)하지 않고, 클라이언트 측에서 SQL 문장을 완성하여 서버로 전송한다는 의미. PreparedStatement의 ? 파라미터를 실제 값으로 채운 완전한 SQL 쿼리 문자열을 매번 서버로 보내 실행하는 방식 “클라이언트 측 PreparedStatement” 또는 “에뮬레이션된 PreparedStatement” 네트워크 호출이 1회만 발생 MySQL버전 5.
인상 깊은 내용 p65 “Some people will say incorrectly that objects are passed “by reference.” In programming language design, the term pass by reference properly means that when an argument is passed to a function, the invoked function gets a reference to the original value, not a copy of its value. If the function modifies its parameter, the value in the calling code will be changed because the argument and parameter use the same slot in memory.