Fix doc typos (#511)

pull/528/head
Jim Tittsler 2023-09-02 16:55:03 +09:00 committed by GitHub
parent 2ee20af5c8
commit 541b347da4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -5,24 +5,24 @@ SilverBullet currently supports two modes for its client:
You can toggle between these two modes by clicking the 🔄 button in the top bar. You can toggle between these two modes by clicking the 🔄 button in the top bar.
You can switch modes at any time, so try them both to decide what works best for you. You can switch modes anytime, so try them both to decide what works best for you.
## Online mode ## Online mode
In online mode, all content in your space is kept on the server, and a lot of the heavy lifting (such as indexing of pages) happens on the server. In online mode, all content in your space is kept on the server, and a lot of the heavy lifting (such as indexing of pages) happens on the server.
Advantages: Advantages:
* **Keeps content on the server**: this mode not synchronize all your content to your client (browser), making this a better fit for large spaces. * **Keeps content on the server**: this mode does not synchronize all your content to your client (browser), making this a better fit for large spaces.
* **Lighter-weight** in terms of memory and CPU use of the client * **Lighter-weight** in terms of memory and CPU use of the client
Disadvantages: Disadvantages:
* **Requires a working network connection** to the server. * **Requires a working network connection** to the server.
* **Higher latency**, since more interactions require calls to the server, this may be notable e.g. when completing page names. * **Higher latency**, since more interactions require calls to the server, this may be notable e.g., when completing page names.
## Synced mode ## Synced mode
In this mode, all content is synchronized to the client, and all processing happens there. The server effectively acts as “dumb data store.” All SilverBullet functionality is available even when there is no network connection available. In this mode, all content is synchronized to the client, and all processing happens there. The server effectively acts as a “dumb data store.” All SilverBullet functionality is available even when there is no network connection available.
Advantages: Advantages:
* **100% offline capable**: disconnect your client from the network, shutdown the server, everything still works. Changes synchronize automatically once a network connection is re-established. * **100% offline capable**: disconnect your client from the network, shutdown the server, and everything still works. Changes synchronize automatically once a network connection is re-established.
* **Lower latency**: all actions are performed locally in the client, which in most cases will be faster * **Lower latency**: all actions are performed locally in the client, which in most cases will be faster
Disadvantages: Disadvantages: