This is an automated email from the ASF dual-hosted git repository.
jgemignani 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 f92f3a7e Update index.js (#318)
f92f3a7e is described below
commit f92f3a7e56fe0ac363956aaa7ada2ccae004383b
Author: Jayden H <[email protected]>
AuthorDate: Mon May 20 09:35:32 2024 -0700
Update index.js (#318)
Add questions #24 and #25 on the [FAQ] page
---
src/pages/faq/index.js | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/src/pages/faq/index.js b/src/pages/faq/index.js
index 265b9734..e3d6e523 100644
--- a/src/pages/faq/index.js
+++ b/src/pages/faq/index.js
@@ -224,6 +224,22 @@ class FAQ extends React.Component {
</>
),
},
+
+ { id: 24, question: 'Q 24 : Can Apache AGE be deployed in a cloud
environment, and if so, are there any specific considerations or best
practices?',
+ answer: () => (
+ <>
+ <p>Apache AGE can be deployed in a compute engine like EC2
instance.</p>
+ </>
+ ),
+ },
+
+ { id: 25, question: 'Q 25 : Are there any restrictions or limitations
on the types of data that can be stored in Apache AGE?',
+ answer: () => (
+ <>
+ <p>Generally, no. Anything that can be stored in a JSON object can
be stored in Apache AGE.</p>
+ </>
+ ),
+ },
// 여기에 추가 질문과 답변을 넣을 수 있습니다.
];