Skip to content

Commit f8f654c

Browse files
committed
add architecture doc, refine getting started landing page
1 parent 7cb1913 commit f8f654c

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

draft--architecture.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
3+
## Architecture
4+
SQLite Cloud uses the [Raft](https://raft.github.io) consensus algorithm to distribute your data changes across a cluster of computing systems, ensuring that each node in the cluster agrees upon the same series of state transitions. Raft implements consensus with a leader approach.
5+
6+
SQLite Cloud is written in ANSI C and GO, and it works on most POSIX systems (Linux, *BSD, Mac OS X) and Windows.
7+
8+
SQLite Cloud supports all the SQLite features without any limitations, including ACID compliance and non-deterministic SQL statements.

sqlite-cloud/index.mdx

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Introduction to SQLite Cloud
2+
title: Getting Started with SQLite Cloud
33
description: SQLite Cloud is a distributed relational database system built on top of the SQLite database engine.
44
category: getting-started
55
status: publish
@@ -8,27 +8,17 @@ status: publish
88
## Overview
99
**SQLite Cloud** is a managed, distributed relational database system built on top of the SQLite database engine.
1010

11-
It has been designed from the ground up to ensure strong consistency across all nodes in a cluster while simultaneously managing the technical aspects of scaling, security, and data distribution. This ensures that you can focus on your core tasks while relying on **SQLite Cloud** to handle the complexities of managing your databases.
11+
It has been designed from the ground up to ensure strong consistency across all nodes in a cluster while simultaneously managing the technical aspects of scaling, security, and data distribution. This ensures that you can focus on your core tasks while relying on SQLite Cloud to handle the complexities of managing your databases.
1212

13-
**SQLite Cloud** is written in ANSI C and GO, and it works on most POSIX systems like Linux, *BSD, and Mac OS X (Windows is supported too). You can use **SQLite Cloud** from the most popular programming languages or its REST API.
13+
You can access SQLite Cloud from the most popular programming languages or its REST API.
1414

15-
---
16-
17-
## Architecture
18-
19-
**SQLite Cloud** uses the [Raft](https://raft.github.io) consensus algorithm to distribute your data changes across a cluster of computing systems, ensuring that each node in the cluster agrees upon the same series of state transitions. Raft implements consensus with a leader approach.
20-
21-
**SQLite Cloud** supports all the SQLite features without any limitations. It is fully ACID compliant, supports non-deterministic SQL statements, and guarantees strong consistency across all your cluster nodes. This ensures that data read from any node in the system returns the most up-to-date version of the data that has been committed.
22-
23-
In a distributed database system, where data is distributed across multiple nodes, ensuring strong consistency can be challenging due to the potential for network delays, node failures, and concurrent transactions. Maintaining strong consistency is crucial for ensuring that the system behaves as expected and that applications built on top of the system can rely on the accuracy and integrity of the data.
24-
25-
## Features
26-
SQLite Cloud provides a comprehensive suite of tools for building realtime, local-first applications.
27-
* **Local Sync**: Query your local SQLite database and synchronize with the cloud and across devices in real-time (**In development**).
28-
* **Offline-first**: Resolve conflicts between devices and the cloud with CRDTs (**In development**).
29-
* **[Webhooks](/docs/webhooks)**: Send changes to your database to external endpoints, or use to trigger edge functions via HTTP, Websockets, or on database events like INSERT, UPDATE, and DELETE.
30-
* **[Edge Functions](/docs/edge-functions)**: Run serverless functions on the same node that stores your data for low-latency operations. Trigger with webhooks or on database operations.
15+
### Features
16+
SQLite Cloud provides a comprehensive suite of tools for building realtime, local-first, edge AI applications.
17+
* **Local Sync**: Read and write to your local SQLite database, then synchronize with the cloud and across devices in the background. (**alpha**)
18+
* **Offline-first**: Automatically resolve conflicts between devices and the cloud with CRDTs. (**alpha**)
19+
* **[Webhooks](/docs/webhooks)**: Send changes in your database to an external webhook or use to trigger actions.
20+
* **[Edge Functions](/docs/edge-functions)**: Run serverless functions next to your database. Trigger via HTTP endpoint or on database operations (INSERT, UPDATE, DELETE).
3121
* **[Pub/Sub](/docs/pub-sub)**: Subscribe to changes in your database to replicate data, power notifications, and build multiplayer experiences.
32-
* **Weblite**: Autogenerated REST APIs to interact with your database and edge functions.
22+
* **[Weblite](/docs/weblite)**: Autogenerated REST APIs to interact with your database and edge functions.
3323
* **[Query Analyzer](/docs/analyzer)**: Receive optimization recommendations for your queries to improve performance.
34-
* **Multi-region Load Balancer**: Connect to SQLite Cloud from anywhere in the world and SQLite Cloud automatically routes traffic to the nearest node for optimal performance.
24+
* **Multi-region Load Balancer**: Connect from anywhere and SQLite Cloud automatically routes traffic to the nearest node for optimal performance.

0 commit comments

Comments
 (0)