Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/user_guide/08-attribute-API.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Item Attributes
# Item Attributes

Item attributes는 각 cache item의 메타데이터를 의미한다.
Item attributes의 기본 설명은 [ARCUS cache server의 item attributes 부분](https://github.com/naver/arcus-memcached/blob/master/docs/ascii-protocol/ch03-item-attributes.md)을 참고 하길 바란다.
Expand All @@ -9,7 +9,7 @@ Item attributes를 활용하여 item을 생성하거나, Item attributes를 조
- [Attribute 조회](08-attribute-API.md#attribute-조회)
- [Attribute 변경](08-attribute-API.md#attribute-변경)

### Attribute 생성
## Attribute 생성

CollectionAttributes
- collection item 속성 구현체는 `CollectionAttributes`이며, 각 collection 유형의 item을 생성할 때 속성을 설정하기 위한 용도이다.
Expand Down Expand Up @@ -44,7 +44,7 @@ try {

```

### Attribute 조회
## Attribute 조회

주어진 key의 attributes를 조회하는 함수이다.

Expand Down Expand Up @@ -105,7 +105,7 @@ overflowaction: error
3. Key가 없으면 null이 반환된다.


### Attribute 변경
## Attribute 변경

주어진 key의 attributes를 변경하는 함수이다.

Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/09-other-API.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Other API
# Other API

본 절에서는 아래의 나머지 API들을 설명한다.

- [Flush](09-other-API.md#flush)

### Flush
## Flush

ARCUS는 prefix단위로 flush하는 기능을 제공한다.
캐시 서버에 저장된 모든 데이터들 중 특정 prefix를 사용하는 모든 key들을 한번의 요청으로 삭제할 수 있다. 단, Front Cache의 데이터는 flush 되지 않는다.
Expand Down