update sync.md

This commit is contained in:
dataegg 2021-02-20 21:26:30 +08:00
parent 802cde4e08
commit e815a2b3dd
2 changed files with 59 additions and 1 deletions

View File

@ -30,7 +30,7 @@ This is the documentation of FeedMe.
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/customize_menus.md">Customize Menus</a>
- Feed setting
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/mobilizer.md">Mobilizer and Full Text Download</a>
- Sync
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/sync.md">Sync</a>
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/storage_and_cache.md">Storage and Cache</a>
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/block_image.md">Blocking Images</a>
- <a href="https://github.com/seazon/FeedMe/blob/master/doc/en/highlighter.md">Highlighter</a>

58
doc/en/sync.md Normal file
View File

@ -0,0 +1,58 @@
# Use button or gesture to synchronize
# Sync action
# Auto sync settings
# Unread count of synchronization
The number of unread items to synchronize is set in `Settings`-`Cache`-`Reading List`. If 500 are set, and the number of unread items on the server side is greater than 500, the latest 500 will be downloaded for each synchronization. If it is less than 500, download all of them.
# Sync mode
Provide multiple synchronization modes to meet different needs.
## All
Synchronize only based on the publish time of the article.
Example:
- Download latest 250 unread
- Download 100
- Download 100
- Download 50
This method is the fastest way to download, but you cannot exclude certain `feeds` or `categories`.
Note: If the `China Mode` is enabled, the `All` mode is mandatory.
## Categories
Sync by category
Example:
- 90 unread items wait to download, these 90 unread items belong to 3 `categories`
- sort these `categories`, fewer unread count has higher priority to sync.
- category A has 10 unread items, category B has 30 unread, category C has 50 unread
- Download category A 10
- Download category B 20
- Download category C 20
- Download category B 10
- Download category C 20
- Download category C 10
Can exclude certain categories, but can't exclude feeds.
Note that synchronization by `category` cannot be synchronized to articles from uncategorized feeds.
## Feeds
Sync by feed
Example:
- 90 unread items wait to download, these 90 unread items belong to 3 `feeds`
- sort these `feeds`, fewer unread count has higher priority to sync.
- feeds A has 10 unread, feed B has 30 unread, and feed C has 50 unread
- Download feed A 10
- Download feed B 20
- Download feed C 20
- Download feed B 10
- Download feed C 20
- Download feed C 10
Can exclude certain feeds, but can't exclude categories.