"Neo4j Tutorial"의 두 판 사이의 차이

hiblue
이동: 둘러보기, 검색
(노드Nodes)
4번째 줄: 4번째 줄:
 
[[File:Neo4j_model.JPG|800px]]
 
[[File:Neo4j_model.JPG|800px]]
 
===노드'''<span style="color:skyblue">''Nodes''</span>===
 
===노드'''<span style="color:skyblue">''Nodes''</span>===
**데이터 개체<br/><span style="color:skyblue">''Nodes are the main data elements''</span>
+
*데이터 개체<br/><span style="color:skyblue">''Nodes are the main data elements''</span>
**관계로 다른 노드들과 연결<br/><span style="color:skyblue">''Nodes are connected to other nodes via relationships''</span>
+
*관계로 다른 노드들과 연결<br/><span style="color:skyblue">''Nodes are connected to other nodes via relationships''</span>
**하나 이상의 속성을 지님<br/><span style="color:skyblue">''Nodes can have one or more properties (i.e., attributes stored as key/value pairs)''</span>
+
*하나 이상의 속성을 지님<br/><span style="color:skyblue">''Nodes can have one or more properties (i.e., attributes stored as key/value pairs)''</span>
**하나 이상의 라벨을 지님<br/><span style="color:skyblue">''Nodes have one or more labels that describes its role in the graph''</span>
+
*하나 이상의 라벨을 지님<br/><span style="color:skyblue">''Nodes have one or more labels that describes its role in the graph''</span>
 +
===관계'''<span style="color:skyblue">''Relationships''</span>===
 +
*두 개의 노드를 연결<br/><span style="color:skyblue">''Relationships connect two nodes''</span>
 +
*직접적으로 연결<br/><span style="color:skyblue">''Relationships are directional''</span>
 +
*하나의 노드가 여러 개의 관계, 재귀적인 관계도 가질 수 있음<br/><span style="color:skyblue">''Nodes can have multiple, even recursive relationships''</span>
 +
*관계는 하나 이상의 속성을 가진다<br/><span style="color:skyblue">''Relationships can have one or more properties (i.e., attributes stored as key/value pairs)''</span>

2018년 1월 17일 (수) 00:53 판

  • Neo4j is the world’s leading graph database.
    그래프 데이터 베이스

Neo4j의 기본구조

  • The Labeled Property Graph Model을 기본 데이터 구조로 가짐.

Neo4j model.JPG

노드Nodes

  • 데이터 개체
    Nodes are the main data elements
  • 관계로 다른 노드들과 연결
    Nodes are connected to other nodes via relationships
  • 하나 이상의 속성을 지님
    Nodes can have one or more properties (i.e., attributes stored as key/value pairs)
  • 하나 이상의 라벨을 지님
    Nodes have one or more labels that describes its role in the graph

관계Relationships

  • 두 개의 노드를 연결
    Relationships connect two nodes
  • 직접적으로 연결
    Relationships are directional
  • 하나의 노드가 여러 개의 관계, 재귀적인 관계도 가질 수 있음
    Nodes can have multiple, even recursive relationships
  • 관계는 하나 이상의 속성을 가진다
    Relationships can have one or more properties (i.e., attributes stored as key/value pairs)