Firebase远程配置推送多长时间?

时间:2016-09-19 23:28:56

标签: ios swift firebase firebase-remote-config

远程配置推送需要多长时间?我有以下代码,在网上推送新的更新后,它会继续打印false和旧值至少几分钟。

remoteConfig.fetchWithCompletionHandler { (status, error) -> Void in
    if (status == FIRRemoteConfigFetchStatus.Success) {
        print("Config fetched.")
        print(self.remoteConfig.activateFetched())
        print(self.remoteConfig.configValueForKey("my_key").stringValue)
    } else {
        print("Config not fetched.")
    }
}

1 个答案:

答案 0 :(得分:3)

根据the documentation,默认行为是缓存12小时。功能

fetchWithExpirationDuration(expirationDuration: NSTimeInterval, completionHandler: FIRRemoteConfigFetchCompletion?)

指定缓存持续时间。乍一看,我认为持续时间是网络请求的超时 - 实际上,它是缓存的超时。如果您在短时间内使用此值,则会在您将缓存设置为过期时重新加载值。