cachedInLocalStorage
fun <Identifier, Failure, Value : Any> Cache<Identifier, Failure, Value>.cachedInLocalStorage(keyPrefix: String, serializeIdentifier: (Identifier) -> String?, serializeValue: (Value) -> String?, deserializeValue: (String) -> Value?): Cache<Identifier, Failure, Value>(source)
In-browser Cache implementation that is shared between tabs and persists when the browser is closed.
This function is equivalent for cachedInBrowserStorage using the local storage engine. See the cachedInBrowserStorage documentation for more information.