Skip to content

Commit a032b24

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 3116aa5 commit a032b24

File tree

145 files changed

+31632
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+31632
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
tags:
3+
- Community
4+
- Enterprise Option
5+
displayed_sidebar: docsEnglish
6+
---
7+
8+
# Run Analytical Queries Overview
9+
10+
In this sub-category, you can learn how to set up and configure ScalarDB Analytics, an analytics component of ScalarDB. Then, you can run analytical queries over ScalarDB-managed databases, which are updated through ScalarDB transactions, and non-ScalarDB-managed databases.
11+
12+
To learn how to run analytical queries, see the following guides:
13+
14+
- [Run Analytical Queries on Sample Data by Using ScalarDB Analytics with PostgreSQL](scalardb-samples/scalardb-analytics-postgresql-sample/README.mdx)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
tags:
3+
- Community
4+
- Enterprise Standard
5+
- Enterprise Premium
6+
displayed_sidebar: docsEnglish
7+
---
8+
9+
# Add ScalarDB to Your Build
10+
11+
import Tabs from '@theme/Tabs';
12+
import TabItem from '@theme/TabItem';
13+
14+
The ScalarDB library is available on the [Maven Central Repository](https://mvnrepository.com/artifact/com.scalar-labs/scalardb). You can add the library as a build dependency to your application by using Gradle or Maven.
15+
16+
## Configure your application based on your build tool
17+
18+
Select your build tool, and follow the instructions to add the build dependency for ScalarDB to your application.
19+
20+
<Tabs groupId="build_tools" queryString>
21+
<TabItem value="Gradle" label="Gradle">
22+
To add the build dependency for ScalarDB by using Gradle, add the following to `build.gradle` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:
23+
24+
```gradle
25+
dependencies {
26+
implementation 'com.scalar-labs:scalardb:<VERSION>'
27+
}
28+
```
29+
</TabItem>
30+
<TabItem value="Maven" label="Maven" default>
31+
To add the build dependency for ScalarDB by using Maven, add the following to `pom.xml` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:
32+
33+
```xml
34+
<dependency>
35+
<groupId>com.scalar-labs</groupId>
36+
<artifactId>scalardb</artifactId>
37+
<version><VERSION></version>
38+
</dependency>
39+
```
40+
</TabItem>
41+
</Tabs>

0 commit comments

Comments
 (0)