Hi, how can I speed up the load of targets?
Loading 200 targets takes about 60 seconds, it's very slow, is there a way to load faster?
Please see my code:
let targets = ImageTarget.setupAll(path, StorageType.Json.rawValue)
for target in targets {
tracker.loadTarget(target, { (target, status) in
print("load target (\(status)): \(target.name()) (\(target.runtimeID()))")
})
}
I tried to use the method loadTargetBlocked, but it takes the same amount of time