From 52eba2a8b0f548c0d57df13cfafaabc6eb31ddc5 Mon Sep 17 00:00:00 2001 From: Jay Graber Date: Wed, 10 Jun 2020 17:38:00 -0700 Subject: [PATCH] Edit --- protocols/gun.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/protocols/gun.md b/protocols/gun.md index 14cd57e..f087f9b 100644 --- a/protocols/gun.md +++ b/protocols/gun.md @@ -2,12 +2,10 @@ GUN is a decentralized graph database with a conflict resolution algorithm (CRDT) and synchronization protocol. It includes a library of tools for merging conflicting data and handling routing, security, and storage. -In GUN's graph store, entries are [javascript objects under UUID keys](https://gun.eco/docs/Porting-GUN). Objects can be data of any type, including key-value, files, JSON, documents, tables, relational, and graph or hyper-graph data. +In GUN's graph store, entries are [javascript objects under UUID keys](https://gun.eco/docs/Porting-GUN). Objects can be data of any type, including key-value, files, JSON, documents, tables, relational, and graph or hyper-graph data. Data is stored in the browser by default, with backup "superpeers" to ensure persistence. Peers connect to other peers, and choose what data to synchronize and persist. There is a public space and a user space. In the public space are all graphs without a public key as their ID. In the user space, graphs are signed with the user's keys, and their IDs must include the user's public key. -Data is stored in the browser by default, with backup "superpeers" to ensure persistence. Peers connect to other peers, and choose what data to synchronize and persist. - ### Identity Gun's [User System](https://gun.eco/docs/Auth) creates a username and password. Usernames are global but not unique.