Insufficient documentation/understanding on env options #262
-
|
As per title, I'd like to get more information on these env options:
(1) and (2): What exactly do they do, should only one of them be enabled or can it be both, or neither - and how do I decide which would be best for me according to my setup? (3) and (4): In general, the sync direction variables - Can multiple/all of them be set to I may have more questions, but it'd be very helpful if I figure these out exactly first. I am in the process of supporting this project in my Helm chart, so it'd be nice if I comprehensively understand these first before implementing these options in my chart. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
yes you can enable them all, nothing is exclusive. Most people i would think just leave everything enabled and default. Generate guids means it will fetch all the media IDs from the providers, IMDB/TVDB, in plex/jellyfin/emby to use for matching. Generate locations means it will fetch all the file locations/names for the media to use that for matching. You can use both, getting all the guids is kinda slow so if you are using the exact same storage backend between the media servers then you can disable the guids and use only the file names. This will let it process each loop faster. If the servers are different then you can enable the guids and disable the locations if you want. Or you can just keep both enabled and not worry about it. |
Beta Was this translation helpful? Give feedback.
yes you can enable them all, nothing is exclusive. Most people i would think just leave everything enabled and default.
Generate guids means it will fetch all the media IDs from the providers, IMDB/TVDB, in plex/jellyfin/emby to use for matching.
Generate locations means it will fetch all the file locations/names for the media to use that for matching.
You can use both, getting all the guids is kinda slow so if you are using the exact same storage backend between the media servers then you can disable the guids and use only the file names. This will let it process each loop faster. If the servers are different then you can enable the guids and disable the locations if you want. Or you can…