일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Symbol
- SQLite
- 구조와 원리
- Windows via c/c++
- go
- 컴퓨터 강좌
- Programming
- getopts
- newSQL
- 커널
- 긴옵션
- 한빛미디어
- OS 커널
- 전처리기
- DBMS
- kernel
- DBMS 개발
- Preprocessor
- 함수포인터
- 포인터
- UNIX
- FreeBSD
- Pointer
- TiDB
- TiKV
- UNIX Internals
- 포인터변수
- bash
- 약어
- Golang
- Today
- Total
목록개발자 이야기 (97)
sonumb
목차 테스팅 전략 1.1. benchmarksql 1.1.1. 검증 1.1.2. 테스트 1.1.3. benchmarksql 5.1 1.2. tpcc 1.2.1. 사전작업 1.2.1.1. config/workload_mysql.xml 파일 1.2.1.2. tpcc-mysql-ddl.sql 파일 1.2.2. 검증 1.2.3. yugabyteDB 테스트 1.2.3.1. Load data 1.2.3.2. TPC-C 실행 1.2.4. TiDB (mysql) 으로 TPCC 실행 시 문제 1.2.5. 수정사항 1.3. oltpbench 환경설정 및 실행 2.1. benchmarksql 2.1.1. Yugabyte 세팅 2.1.2. JDBC 드라이버 2.1.3. 컨넥션 스트링 세팅 2.2. tpcc 2.3. oltpb..
명령어 옵션들 mysqldump의 명령어 옵션는 아래와 같다. $ mysqldump --help mysqldump Ver 10.13 Distrib 5.7.32, for osx10.15 (x86_64) Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Dumping structure and contents of MySQL databases and tables. Usage: mysq..
표기 및 정의 Duplicate Elimination 말그대로 중복 제거(DISTINCT) 표기: \(\delta(R)\) Projection 특정 컬럼(애트리뷰트)만을 추출 표기: \(\Pi_{L}(R)\) \(L\)은 다음중 하나 \(R\)의 애트리뷰트, \( a_1, a_2, a_3 \dots , a_n \) \(E\) → \(a'\) \(a'\)는 rename된 컬럼 \(E\)는 다음 중 하나 수식: (ex. \(( 3 * a_1 )\)) \(R\)의 애트리뷰트 일때, \(M\): 연산 실행 시 가용 메모리 버퍼의 크기 \(B(R)\) \(R\)의 레코드를 저장하기 위해 필요한 디스크 블록 수 \(T(R)\) \(R\)의 전체 튜플 수 한 블록에 저장되는 레코드 수 = \(T(R)/B(R)\) \..
LIKE 쿼리 최적화 일단, 여기서 언급하는 MySQL 버전은 5.7.32다 mysql> select version(); +-----------+ | version() | +-----------+ | 5.7.32 | +-----------+ 1 row in set (0.00 sec) mysql> 테이블 및 데이터 삽입 -- test DB 생성 create database test default character set utf8mb4 collate utf8mb4_bin; use test; -- test 테이블 생성 drop table if exists test; create table test ( a int primary key auto_increment, b varchar(64) not null, key..
remote 브랜치에 origin/release-1.1.1 을 master로 만들고 싶다면, git clone https://localhost/myproject # 기존 마스터를 백업한다. git checkout -b master_backup master git push --set-upstream orgin master_backup # 기존 release-1.1.1를 백업한다. git checkout release-1.1.1 git checkout -b release-1.1.1_backup release-1.1.1 git push --set-upstream orgin release-1.1.1_backup git checkout release-1.1.1 # 현재 브랜치가 release-1.1.1이라면 명령..
참조: zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html zsh: 13 Prompt Expansion A ‘#’ if the shell is running with privileges, a ‘%’ if not. Equivalent to ‘%(!.#.%%)’. The definition of ‘privileged’, for these purposes, is that either the effective user ID is zero, or, if POSIX.1e capabilities are supported, that at le zsh.sourceforge.net 1. 프롬프트를 변경해서, 알면 좋은 것? 혹은 원하는 기능? 아이맥이나 맥북 기준으로, 아래와 ..
요 며칠간 맥북프로13 (2015년)이 잠자기로 진입해도 배터리가 광탈하는 현상이 있었다. 일단 몇 가지 포인트를 잡고 해결해 보기로 한다. 전원관리자는 일을 제대로 하는가 맥북은 잠자기 모드 진입 최소/최대 지연시간(?)의 기본값이 아주 길게 세팅되어 있다. 아래 두 명령어를 실행하여 그 시간을 줄여준다(숫자의 단위는 초). 자세한 것은 다른 웹사이트에서 참고하시라. $ sudo pmset -a standbydelaylow 1800 $ sudo pmset -a standbydelayhigh 3600 $ pmset -g System-wide power settings: Currently in use: standby 1 standbydelaylow 1800 womp 1 halfdim 1 hibernatef..
개요 Go 언어로 작성된 소스코드로부터 UML로 리버스 해주는 도구를 소개하고, 그 사용법과 예시를 보여준다. 1. plantuml plantuml은 UML을 puml이라는 특정 마크업 언어로 표현한 것이다. puml로 작성된 파일을 그림으로 출력할 수 있는 툴을 제공한다. 1.1. 다운로드 https://plantuml.com/ko/download 에 가서 plantuml.jar를 $HOME/bin에 다운 받는다. ($HOME/bin 이 아니라도 상관없다. 다만 아래에서 $HOME/bin/plantuml.jar 를 다른 경로로 변경해야 함.) 2. goplantuml go 언어로 작성된 소스코드들을 분석하여 puml을 출력한다. https://github.com/jfeliu007/goplantuml에 ..
컨플루언스 페이지를 스크롤을 할때, 헤더가 숨겨진다. 실제 해당 페이지를 출력할 때는, 스크롤바가 페이지마다 항상 출력된다. (좌측 메뉴바도 문제) PDF로 저장 기능이 있긴하지만, '변환된 PDF 출력'은 번거로우며 출력물이 만족스럽지 않다. Ctrl + P 를 눌러서 출력할 때, 페이지 내용만 출력하는 방법을 찾아냈다. https://community.atlassian.com/t5/Answers-Developer-Questions/Display-confluence-page-content-only/qaq-p/494727 Display confluence page content only Hi there, is it possible to display the content of a page ONLY. Th..