Skip to content

Commit 9e93d37

Browse files
committed
DOCS: Adjusted the internal subsection links.
1 parent 64befc1 commit 9e93d37

File tree

6 files changed

+39
-39
lines changed

6 files changed

+39
-39
lines changed

docs/ascii-protocol/ch05-command-list-collection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
List collection에 관한 명령은 아래와 같다.
44

5-
- [List collection 생성: lop create](#lop-create 명령)
5+
- [List collection 생성: lop create](#lop-create-명령)
66
- List collection 삭제: delete (기존 key-value item의 삭제 명령을 그대로 사용)
77

88
List element에 관한 명령은 아래와 같다.
99

10-
- [List element 삽입: lop insert](#lop-insert 명령)
11-
- [List element 삭제: lop delete](#lop-delete 명령)
12-
- [List element 조회: lop get](#lop-get 명령)
10+
- [List element 삽입: lop insert](#lop-insert-명령)
11+
- [List element 삭제: lop delete](#lop-delete-명령)
12+
- [List element 조회: lop get](#lop-get-명령)
1313

1414
## lop create 명령
1515

docs/ascii-protocol/ch06-command-set-collection.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
Set collection에 관한 명령은 아래와 같다.
44

5-
- [Set collection 생성: sop create](#sop-create 명령)
5+
- [Set collection 생성: sop create](#sop-create-명령)
66
- Set collection 삭제: delete (기존 key-value item의 삭제 명령을 그대로 사용)
77

88
Set element에 관한 명령은 아래와 같다.
99

10-
- [Set element 삽입: sop insert](#sop-insert 명령)
11-
- [Set element 삭제: sop delete](#sop-delete 명령)
12-
- [Set element 조회: sop get](#sop-get 명령)
13-
- [Set element 존재유무 검사: sop exist](#sop-exist 명령)
10+
- [Set element 삽입: sop insert](#sop-insert-명령)
11+
- [Set element 삭제: sop delete](#sop-delete-명령)
12+
- [Set element 조회: sop get](#sop-get-명령)
13+
- [Set element 존재유무 검사: sop exist](#sop-exist-명령)
1414

1515
## sop create 명령
1616

docs/ascii-protocol/ch07-command-map-collection.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
Map collection에 관한 명령은 아래와 같다.
44

5-
- [Map collection 생성: mop create](#mop-create 명령)
5+
- [Map collection 생성: mop create](#mop-create-명령)
66
- Map collection 삭제: delete (기존 key-value item의 삭제 명령을 그대로 사용)
77

88
Map element에 관한 명령은 아래와 같다.
99

10-
- [Map element 삽입: mop insert/upsert](#mop-insertupsert 명령)
11-
- [Map element 변경: mop update](#mop-update 명령)
12-
- [Map element 삭제: mop delete](#mop-delete 명령)
13-
- [Map element 조회: mop get](#mop-get 명령)
10+
- [Map element 삽입: mop insert/upsert](#mop-insertupsert-명령)
11+
- [Map element 변경: mop update](#mop-update-명령)
12+
- [Map element 삭제: mop delete](#mop-delete-명령)
13+
- [Map element 조회: mop get](#mop-get-명령)
1414

1515
## mop create 명령
1616

docs/ascii-protocol/ch08-command-btree-collection.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
B+tree collection에 관한 명령은 아래와 같다.
44

5-
- [B+tree collection 생성: bop create](#bop-create 명령)
5+
- [B+tree collection 생성: bop create](#bop-create-명령)
66
- B+tree collection 삭제: delete (기존 key-value item의 삭제 명령을 그대로 사용)
77

88
B+tree element에 관한 기본 명령은 아래와 같다.
99

10-
- [B+tree element 삽입/대체: bop insert/upsert](#bop-insertupsert 명령)
11-
- [B+tree element 변경: bop update](#bop-update 명령)
12-
- [B+tree element 삭제: bop delete](#bop-delete 명령)
13-
- [B+tree element 조회: bop get](#bop-get 명령)
14-
- [B+tree element 개수 계산: bop count](#bop-count 명령)
15-
- [B+tree element 값의 증감: bop incr/decr](#bop-incrdecr 명령)
10+
- [B+tree element 삽입/대체: bop insert/upsert](#bop-insertupsert-명령)
11+
- [B+tree element 변경: bop update](#bop-update-명령)
12+
- [B+tree element 삭제: bop delete](#bop-delete-명령)
13+
- [B+tree element 조회: bop get](#bop-get-명령)
14+
- [B+tree element 개수 계산: bop count](#bop-count-명령)
15+
- [B+tree element 값의 증감: bop incr/decr](#bop-incrdecr-명령)
1616

1717
ARCUS cache server는 다수의 b+tree들에 대한 조회 기능을 특별히 제공하며, 이들은 아래와 같다.
1818

19-
- [하나의 명령으로 여러 b+tree들에 대한 조회를 한번에 수행하는 기능: bop mget](#bop-mget 명령)
20-
- [여러 b+tree들에서 조회 조건을 만족하는 elements를 sort merge하여 최종 결과를 얻는 기능: bop smget](#bop-smget 명령)
19+
- [하나의 명령으로 여러 b+tree들에 대한 조회를 한번에 수행하는 기능: bop mget](#bop-mget-명령)
20+
- [여러 b+tree들에서 조회 조건을 만족하는 elements를 sort merge하여 최종 결과를 얻는 기능: bop smget](#bop-smget-명령)
2121

2222
ARCUS cache server는 bkey 기반의 element 조회 기능 외에도 b+tree position 기반의 element 조회 기능을 제공한다.
2323
B+tree에서 특정 element의 position이란 b+teee에서의 그 element의 위치 정보로서,
@@ -27,9 +27,9 @@ B+tree position은 0-based index로 표현한다.
2727

2828
ARCUS cache server에서 제공하는 b+tree position 관련 명령은 다음과 같다.
2929

30-
- [B+tree에서 특정 bkey의 position을 조회하는 기능 : bop position](#bop-position 명령)
31-
- [B+tree에서 하나의 position 또는 position range에 해당하는 element를 조회하는 기능 : bop gbp(get by position)](#bop-gbp 명령)
32-
- [B+tree에서 특정 bkey의 position과 element 그리고 그 위치 앞뒤의 element를 함께 조회하는 기능: bop pwg(position with get)] 명령(#bop-pwg)
30+
- [B+tree에서 특정 bkey의 position을 조회하는 기능 : bop position](#bop-position-명령)
31+
- [B+tree에서 하나의 position 또는 position range에 해당하는 element를 조회하는 기능 : bop gbp(get by position)](#bop-gbp-명령)
32+
- [B+tree에서 특정 bkey의 position과 element 그리고 그 위치 앞뒤의 element를 함께 조회하는 기능: bop pwg(position with get)](#bop-pwg-명령)
3333

3434
B+tree position 기반의 조회가 필요한 예를 하나 들면, ranking 시스템이 있다.
3535
Ranking 시스템에서는 특정 score를 bkey로 하여 해당 elements를 저장하고,

docs/ascii-protocol/ch11-command-scan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 11. Scan 명령
22

3-
- [SCAN KEY 명령](#scan-key 명령)
4-
- [SCAN PREFIX 명령](#scan-prefix 명령)
3+
- [SCAN KEY 명령](#scan-key-명령)
4+
- [SCAN PREFIX 명령](#scan-prefix-명령)
55

66
## Scan key 명령
77

docs/ascii-protocol/ch13-command-administration.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# 13. Admin & Monitoring 명령
22

3-
- [FLUSH 명령](#flush 명령)
4-
- [SCRUB 명령](#scrub 명령)
5-
- [STATS 명령](#stats 명령)
6-
- [CONFIG 명령](#config 명령)
7-
- [CMDLOG 명령](#command-logging 명령)
8-
- [LQDETECT 명령](#long-query-detect 명령)
9-
- [KEY DUMP 명령](#key-dump 명령)
10-
- [ZKENSEMBLE 명령](#zkensemble 명령)
11-
- [HELP 명령](#help 명령)
12-
- [SHUTODWN 명령](#shutdown 명령)
13-
- [RELOAD 명령](#reload 명령)
3+
- [FLUSH 명령](#flush-명령)
4+
- [SCRUB 명령](#scrub-명령)
5+
- [STATS 명령](#stats-명령)
6+
- [CONFIG 명령](#config-명령)
7+
- [CMDLOG 명령](#command-logging-명령)
8+
- [LQDETECT 명령](#long-query-detect-명령)
9+
- [KEY DUMP 명령](#key-dump-명령)
10+
- [ZKENSEMBLE 명령](#zkensemble-명령)
11+
- [HELP 명령](#help-명령)
12+
- [SHUTODWN 명령](#shutdown-명령)
13+
- [RELOAD 명령](#reload-명령)
1414

1515
## Flush 명령
1616

0 commit comments

Comments
 (0)