From 7007bd65821c2b07e520bb6d4e3d4fbea8fcbd0e Mon Sep 17 00:00:00 2001 From: Jayden H <119618967+JYage@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:44:03 -0700 Subject: [PATCH] Update index.js (#306) Added questions #21 - #23 on the FAQ page --- src/pages/faq/index.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/pages/faq/index.js b/src/pages/faq/index.js index cbcaf760d..265b97344 100644 --- a/src/pages/faq/index.js +++ b/src/pages/faq/index.js @@ -200,6 +200,30 @@ class FAQ extends React.Component { ), }, + + { id: 21, question: 'Q 21 : How does Apache AGE handle schema-less data or semi-structured data?', + answer: () => ( + <> +

Apache AGE follows labeled-property graph model. Each vertex\edge stores its properties in a JSON-like object. As long as, your data can be prepresented in JSON object, Apache AGE can handle it.

+ + ), + }, + + { id: 22, question: 'Q 22 : Does Apache AGE support data encryption at rest and in transit?', + answer: () => ( + <> +

Since Apache AGE is a PostgreSQL extension, a network connection to AGE and its internal storage is entirely based on PostgreSQL. Therefore, Postgres' encryption mechanism applies to AGE.

+ + ), + }, + + { id: 23, question: 'Q 23 : Are there any known limitations or trade-offs when using Apache AGE compared to other graph databases?', + answer: () => ( + <> +

Apache AGE uses relational models under the hood. Some limitations of relation model applies to AGE, for example large amount of table joins. Though, in some cases, AGE implements custom table scan node to gain performance.

+ + ), + }, // 여기에 추가 질문과 답변을 넣을 수 있습니다. ];