This is an automated email from the ASF dual-hosted git repository.

ako pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/new-web by this push:
     new 7007bd65 Update index.js (#306)
7007bd65 is described below

commit 7007bd65821c2b07e520bb6d4e3d4fbea8fcbd0e
Author: Jayden H <[email protected]>
AuthorDate: Mon Apr 15 21:44:03 2024 -0700

    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 cbcaf760..265b9734 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: () => (
+        <>
+          <p>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.</p>
+        </>
+      ),
+    },          
+
+        { id: 22, question: 'Q 22 : Does Apache AGE support data encryption at 
rest and in transit?',
+      answer: () => (
+        <>
+          <p>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.</p>
+        </>
+      ),
+    },          
+
+        { id: 23, question: 'Q 23 : Are there any known limitations or 
trade-offs when using Apache AGE compared to other graph databases?',
+      answer: () => (
+        <>
+          <p>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.</p>
+        </>
+      ),
+    },          
         
       // 여기에 추가 질문과 답변을 넣을 수 있습니다.
     ];

Reply via email to