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 328f06ff Update index.js (#300)
328f06ff is described below
commit 328f06ff56d2ce37b3ae9b3bbb14984f01a9637c
Author: Jayden H <[email protected]>
AuthorDate: Wed Apr 10 21:31:37 2024 -0700
Update index.js (#300)
Adding questions #18 - #20
---
src/pages/faq/index.js | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/src/pages/faq/index.js b/src/pages/faq/index.js
index b8c91da1..cbcaf760 100644
--- a/src/pages/faq/index.js
+++ b/src/pages/faq/index.js
@@ -177,7 +177,30 @@ class FAQ extends React.Component {
),
},
+ { id: 18, question: 'Q 18 : Can Apache AGE be used alongside other
PostgreSQL extensions?',
+ answer: () => (
+ <>
+ <p>Yes. AGE uses its own namespace for tables, functions, and other
database objects to avoid potential conflicts. Cypher queries are invoked by
the "cypher()" function which returns a set of rows. The column values of those
rows are usually in "agtype". AGE provides the functionality to cast "agtype"
to a PostgreSQL type in most cases. So, AGE can be used together with other
extensions.</p>
+ </>
+ ),
+ },
+
+ { id: 19, question: 'Q 19 : Does Apache AGE provide support for data
replication and synchronization in distributed environments?',
+ answer: () => (
+ <>
+ <p>Apache AGE has been tested with Citus. Due to inherited tables
not being supported by Citus, Apache AGE tables cannot be distributed with
Citus yet. However, it may be supported in future.</p>
+ </>
+ ),
+ },
+ { id: 20, question: 'Q 20 : Are there any known interoperability
issues between Apache AGE and other PostgreSQL extensions or tools?',
+ answer: () => (
+ <>
+ <p>No interoperability issue has been reported so far.</p>
+ </>
+ ),
+ },
+
// 여기에 추가 질문과 답변을 넣을 수 있습니다.
];
const { openItemId } = this.state;