blob: 71faadf0a9ad15134d221d39f8c5eb2e19f7901a [file] [log] [blame]
{
"name": "MemoryCache",
"version": "1.0.0",
"summary": "MemoryCache is a LRU memory cache in swift.",
"description": "MemoryCache is LRU, type-safe, thread-safe memory cache.\n - The MemoryCache class iincorporates **LRU** policies, which ensure that a cache doesn’t use too much of the system’s memory. If memory is needed by other applications, it removes some items from the cache, minimizing its memory footprint.\n - You can add, remove, and query items in the cache from different threads without having to lock the cache yourself.\n - Unlike the NSCache class, the cache guarantees a type by its key.",
"homepage": "https://github.com/yysskk/MemoryCache",
"license": {
"type": "MIT",
"file": "./LICENSE"
},
"authors": {
"yysskk": "yusuke.0213@gmail.com"
},
"source": {
"git": "https://github.com/yysskk/MemoryCache.git",
"tag": "1.0.0"
},
"social_media_url": "https://twitter.com/_yysskk",
"platforms": {
"ios": "8.0"
},
"swift_version": "4.2",
"source_files": "Sources/**/*.swift"
}