-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[공식 사이트](https://www.edgedb.com) | ||
|
||
첫 번째 [[관계형 데이터베이스 Relational Database|관계형]] [[그래프 데이터베이스 Graph Database|그래프]] [[데이터베이스 Database]] 라고 한다. 기존 [[객체 관계 맵퍼 ORM]] 의 한계를 뛰어넘는다는 야심찬 목표를 가지고 있다. 간결하고 직관적인 자체 [[질의 언어 Query Language]]인 EdgeQL을 만들었지만. [[GraphQL]]을 이용한 API도 지원한다고 한다. 테이블 대신 [[객체 Object]]를 기본 단위로 사용해서 [[객체 데이터베이스 Object Database]]를 떠올리게도 한다. | ||
첫 번째 [[관계형 데이터베이스 Relational Database]] [[그래프 데이터베이스 Graph Database|그래프]] [[데이터베이스 Database]] 라고 한다. 기존 [[객체 관계 맵퍼 ORM]] 의 한계를 뛰어넘는다는 야심찬 목표를 가지고 있다. 간결하고 직관적인 자체 [[질의 언어 Query Language]]인 EdgeQL을 만들었지만. [[GraphQL]]을 이용한 API도 지원한다고 한다. 테이블 대신 [[객체 Object]]를 기본 단위로 사용해서 [[객체 데이터베이스 Object Database]]를 떠올리게도 한다. | ||
|
||
현재 [[자바스크립트 Javascript]], [[파이썬 Python]], [[고 Go]] 언어 클라이언트를 지원한다. (엘릭서나 클로저는 지원하실 계획이 있으신가요?) | ||
현재 [[자바스크립트 Javascript]], [[파이썬 Python]], [[고 Go]] 언어 클라이언트를 지원한다. (엘릭서나 클로저는 지원하실 계획이 있으신가요?) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- [[관계대수]]와 [[관계형 데이터베이스 Relational Database]]의 핵심 개념으로 동일한 구조로 이루어진 [[튜플 Tuple]]의 집합을 말한다. | ||
- 사람들은 [[관계 Relation]]이 테이블과 테이블 사이의 [[외래키]] 관계를 말하는 것으로 오해하고는 하지만, 그 관계와는 다른 의미이다. 여기서 튜플은 [[행 Row]]이고, 굳이 말하자면 Relation은 이런 Row들이 모여 있는 [[테이블 Table]]을 의미한다. | ||
- | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
alias:: RDB | ||
|
||
- [[관계대수]]라는 수학에 기반해 데이터를 중복 없이 정규화하고, join하는 방식으로 작동하는 [[데이터베이스 Database]] | ||
- 사람들은 [[관계 Relation]]이 테이블과 테이블 사이의 [[외래키]] 관계를 말하는 것으로 오해하고는 하는데, 동일한 구조로 이루어진 [[튜플 Tuple]]의 집합을 말한다. 여기서 튜플은 [[행 Row]]이고, 굳이 말하자면 Relation은 이런 Row들이 모여 있는 [[테이블 Table]]을 말한다. | ||
- 사람들은 [[관계 Relation]]가 테이블과 테이블 사이의 [[외래키 Foreign Key]] 관계를 말하는 것으로 오해하고는 하는데, 동일한 구조로 이루어진 [[튜플 Tuple]]의 집합을 말한다. 여기서 튜플은 [[행 Row]]이고, 굳이 말하자면 Relation은 이런 Row들이 모여 있는 [[테이블 Table]]을 의미한다. | ||
- | ||
- |