CacheMMKV

open class CacheMMKV : CacheEngine, @unchecked Sendable

MMKV缓存。复杂对象需遵循NSCoding|AnyArchivable协议

MMKV

  • 单例模式

    Declaration

    Swift

    public static let shared: CacheMMKV
  • 主线程初始化MMKV,仅第一次生效,参数cryptKey仅对默认MMKV生效

    Declaration

    Swift

    public static func initializeMMKV(
        cryptKey: Data? = nil,
        rootDir: String? = nil,
        groupDir: String? = nil,
        logLevel: MMKVLogLevel = .info,
        handler: MMKVHandler? = nil
    )
  • 获取原始MMKV对象

    Declaration

    Swift

    public let mmkv: MMKV?
  • 初始化默认MMKV缓存

    Declaration

    Swift

    override public init()
  • 指定参数初始化MMKV缓存

    Declaration

    Swift

    public init(
        mmapID: String,
        cryptKey: Data? = nil,
        rootPath: String? = nil,
        mode: MMKVMode = .singleProcess
    )

CacheEngineProtocol

  • Undocumented

    Declaration

    Swift

    override open func readCache<T>(forKey key: String) -> T?
  • Undocumented

    Declaration

    Swift

    override open func writeCache<T>(_ object: T, forKey key: String)
  • Undocumented

    Declaration

    Swift

    override open func clearCache(forKey key: String)
  • Undocumented

    Declaration

    Swift

    override open func clearAllCaches()