Skip to content

the wrong bit #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions usync/01.uSync/20.guides/90.performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ Occasionally an update in Umbraco or uSync functionality will cause us to make a
Checks are always faster then import operations, To minimize "false positives" in uSync when checking files, perform clean exports after you upgrade uSync minor versions (e.g 10.0 -> 10.1).
:::

## Don't Sync Content/Media If You Don't Need to.
The default configuration for uSync will sync content and media items to disk when they are saved. If you are not going to use 'standard' uSync to sync content (e.g via the uSync dashboard) then you can turn off the content and media sync.
## Turn off ExportOnSave if you don't use the files:

If you don't need the uSync files producing on the production site because you are never going to copy them down from production, then you can turn off all syncing.

The drawback is if you make any changes to the production site directly, they will be lost, and you will be back to doing a side by side comparison of items in the browser. In the perfect world, no one touches production, but it can happen.

## Don't Sync Content/Media If You Don't Need to.

The default configuration for uSync will sync content and media items to disk when they are saved. If you are not going to use 'standard' uSync to sync content (e.g via the uSync dashboard) then you can turn off the content and media sync.

:::note
If you are using uSync.Complete and uSync.Publisher to push and pull your content between sites you can turn off the default Content/Media as the the files in the uSync/v9 folder are not used for this process.
:::
Expand Down