Skip to content

Commit 2ea38d3

Browse files
authored
Removed mysql, mariadb, agedb, google tag manager refs (#341)
* Removed mysql, mariadb, agedb refs * Removing Google tag manager #338
1 parent 1727512 commit 2ea38d3

9 files changed

+10
-44
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ static/admin/*.bundle.*
99
yarn-error.log
1010
docs/*
1111
venv/*
12-
static/age-manual/*
12+
static/age-manual/*
13+
.yarn
14+
.yarnrc.yml

gatsby-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33

44
title: "Apache AGE, Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.",
55

6-
description: "Apache AGE has been registered as an Apache Top level project since May 2022, and was inspired by AgensGraph developed by Bitnine, optimizing the graph database for fast analysis and real-time processing.",
6+
description: "Apache AGE is a PostgreSQL extension that has been registered as an Apache Top level project since May 2022.",
77
},
88
pathPrefix: "/",
99
plugins: [

src/components/Layout.js

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,6 @@ import favicon from '../../static/img/favicon.png';
2020
const TemplateWrapper = ({ children }) => {
2121
const { title, description } = useSiteMetadata();
2222

23-
const injectGA = () => {
24-
25-
if (typeof window == 'undefined') {
26-
return;
27-
}
28-
window.dataLayer = window.dataLayer || [];
29-
function gtag() {
30-
window.dataLayer.push(arguments);
31-
}
32-
gtag('js', new Date());
33-
34-
gtag('config', 'G-VPCE2QF63F');
35-
gtag('config', 'G-XFVE1KJW91')
36-
};
37-
3823
const titleNameMapper = () => {
3924
const isBrowser = typeof window !== 'undefined';
4025
if (isBrowser) {
@@ -76,15 +61,9 @@ const TemplateWrapper = ({ children }) => {
7661
<meta charset="UTF-8" /> {/* 문자 집합 선언 추가 */}
7762
<link rel="icon" href={withPrefix('/img/favicon.png')} />
7863
<meta name="description" content={description} />
79-
{/* Global site tag (gtag.js) - Google Analytics */}
80-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VPCE2QF63F" />
81-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XFVE1KJW91"/>
82-
8364
{/* Search Console New */}
8465
<meta name="google-site-verification" content="C4CIVL2dGO5hQM50NyalduCnsGIL9cRgtP8ilWhKWko" />
85-
<script>
86-
{injectGA()}
87-
</script>
66+
8867
<link
8968
rel="apple-touch-icon"
9069
sizes="180x180"

src/pages/blog/2024-04-23-from-data-to-connections-leveraging-hyperconnectivity-in-e-commerce-data-part-1.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,5 @@ In the MATCH clause, you can search the path you want to extract. In the {"(a: c
5757

5858
As seen above, graph database queries exhibit hyperconnectivity implementation much more efficiently. Notably, Apache AGE stands out as a database with its hybrid query capability, enabling many including non-experts in graph queries and derive results using SQL. Being a PostgreSQL extension, Apache AGE offers the flexibility to leverage extensions tailored to specific situations and domains, enhancing its practicality and adaptability.
5959

60-
Are you interested in learning more about Apache AGE? [Learn More Now](http://agedb.io/From-Data-to-Connections-Leveraging-Hyperconnectivity-in-E-commerce-Data.jsp#).
6160

6261
<!--EndFragment-->

src/pages/blog/2024-04-23-learn-machine-learning-with-graph-in-hyperconnected-data-part-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ Figure 6. Example of Link Prediction in Apache AGE (Source: Missing Link Predict
6666

6767
This article explored the concept of graph hyper-connection, the connection of table data from a relational database to a graph structure. By harnessing the power of hyperconnectivity between relational and graph databases, data can be managed flexibly, leading to the creation of new value through not only simple queries but also advanced analytics.
6868

69-
To efficiently model and manage different types of data, an enterprise DBMS like AGEDB is an ideal solution. It enables the identification and management of relationships between data in tables, facilitating the extension of knowledge associations and enabling comprehensive analysis through graph-based approaches.
69+
To efficiently model and manage different types of data, an enterprise DBMS like PostgreSQL with Apache AGE is an ideal solution. It enables the identification and management of relationships between data in tables, facilitating the extension of knowledge associations and enabling comprehensive analysis through graph-based approaches.
7070

7171
<!--EndFragment-->

src/pages/blog/2024-05-01-what-is-a-graph-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Apache AGE finds its utility in various domains, reflecting the versatility and
6363

6464

6565
* Social Networking: By managing vast networks of users and their interactions, Apache AGE can drive complex social graphs to deliver personalized content, suggest connections, and analyze trends.
66-
* Fraud Detection: In financial services, Apache AGE can help map transaction patterns to detect and prevent fraud more effectively by spotting anomalies in densely connected data. Learn more about it here: <https://agedb.io/the-role-of-graph-modeling-in-fraud-detection-systems.jsp>
67-
* Recommendation Engines: Retail and entertainment sectors use Apache AGE to analyze customer preferences and social interactions to recommend products or content. You can learn more about it in this blog article: <https://agedb.io/principle-of-a-recommendation-system-using-raph-database.jsp>
66+
* Fraud Detection: In financial services, Apache AGE can help map transaction patterns to detect and prevent fraud more effectively by spotting anomalies in densely connected data.
67+
* Recommendation Engines: Retail and entertainment sectors use Apache AGE to analyze customer preferences and social interactions to recommend products or content.
6868
* Network and IT Operations: Apache AGE can be used to monitor networks and manage IT infrastructure by providing insights into the relationships and dependencies among various IT components.
6969

7070

src/pages/faq/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ class FAQ extends React.Component {
7979
answer: () => (
8080
<>
8181
<p>Apache AGE is an open source project and free to use.</p>
82-
<p>But there are some vendors providing commercial support such as AGEDB in Canada.</p>
8382
</>
8483
),
8584
},

src/pages/getstarted/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ class FAQ extends React.Component {
7979
answer: () => (
8080
<>
8181
<p>Apache AGE is an open source project and free to use.</p>
82-
<p>But there are some vendors providing commercial support such as AGEDB in Canada.</p>
8382
</>
8483
),
8584
},

src/pages/overview/index.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
templateKey: overview-page
33
path: /about
44
description: >-
5-
AGE was under development since 2019 by a team of engineers at Bitnine Global Inc. The project, originally born out
6-
of AgensGraph, a multi-model graph database fork of PostgreSQL, was donated to the Apache Software Foundation and entered
7-
incubation in April 2020.
5+
Apache AGE is a graph extension for PostgreSQL.
86
bannerImg: /img/banner-overview.jpg
97
bannerContents: >-
108
# Introduction of AGE
@@ -26,18 +24,8 @@ subcon: >-
2624

2725
Below is a brief overview of the AGE architecture, similar to the PostgreSQL architecture and backend. Every component runs on the PostgreSQL transaction cache layer and storage layer.
2826

29-
**Apache AGE™** will be compatible with all relational databases in the future development, starting with MariaDB and MySQL.
3027

31-
<br /><br /><br />
32-
33-
<div class="Databases">
34-
35-
![](/img/logo-large-postgresql.jpg)
36-
![](/img/logo-large-mariadb.jpg)
37-
![](/img/icon-Large-mysql.jpg)
38-
![](/img/to-be-continued...png)
39-
40-
</div>
28+
<br />
4129

4230
---
4331

0 commit comments

Comments
 (0)