We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/// /// - Parameters: /// - diskConfig: Configuration for disk storage /// - memoryConfig: *Optional*. Pass config if you want memory cache /// - Throws: Throw StorageError if any. public convenience init(diskConfig: DiskConfig, memoryConfig: MemoryConfig, transformer: Transformer<Value>) throws { let disk = try DiskStorage<Key, Value>(config: diskConfig, transformer: transformer) let memory = MemoryStorage<Key, Value>(config: memoryConfig) let hybridStorage = HybridStorage(memoryStorage: memory, diskStorage: disk) self.init(hybridStorage: hybridStorage) }
This says memoryConfig should be Optional, but it's not. Not sure which is the typo.
memoryConfig
The text was updated successfully, but these errors were encountered:
The code should be the source of truth.
Sorry, something went wrong.
No branches or pull requests
This says
memoryConfig
should be Optional, but it's not. Not sure which is the typo.The text was updated successfully, but these errors were encountered: