mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add new scanner algorithm, can be enabled with DevNewScanner config option
This commit is contained in:
parent
de0cc1f268
commit
51c295d1de
11 changed files with 750 additions and 160 deletions
|
@ -52,3 +52,19 @@ func BreakUpStringSlice(mediaFileIds []string, chunkSize int) [][]string {
|
|||
}
|
||||
return chunks
|
||||
}
|
||||
|
||||
func LongestCommonPrefix(list []string) string {
|
||||
if len(list) == 0 {
|
||||
return ""
|
||||
}
|
||||
|
||||
for l := 0; l < len(list[0]); l++ {
|
||||
c := list[0][l]
|
||||
for i := 1; i < len(list); i++ {
|
||||
if l >= len(list[i]) || list[i][l] != c {
|
||||
return list[i][0:l]
|
||||
}
|
||||
}
|
||||
}
|
||||
return list[0]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue