4 "summary": "In Memory LRU Cache for iOS.",
5 "description": "\n# NMLRUCache [![Build Status](https://travis-ci.org/Nirma/NMLRUCache.svg?branch=master)](https://travis-ci.org/Nirma/NMLRUCache)\n\nIn Memory LRU Cache Implementation for iOS and OS X.\n\n## Requirements\n- iOS 5.0+\n- ARC\n\n## Features\n- Threadsafe and optimized for use with Grand Central Dispatch.\n- Completely In Memory Cache that deletes least recently used elements.\n\n## Installation\n- Copy the folder `NMLRUCache/` containing the files NMLRUCache.h/m and NMLRUImageCache.h/m into your project.\n\n## Usage\n\n### Initialization:\n### Creating an LRU Image Cache of 10 elements:\n```\n NMLRUImageCache *imageCache = [[NMLRUImageCache alloc] initWithSize: 10];\n```\n\n### Storing an image in the Cache:\n\n```\n [imageCache setImage:image forKey:@\"imageKey\"];\n```\n\n#### Fetching Image from Cache\n\n```\n [imageCache imageForKey:@\"imageKey\"];\n```\n",
6 "homepage": "https://github.com/nirma/NMLRUCache",
9 "Nicholas Maccharoli": "nmaccharoli@gmail.com"
12 "git": "https://github.com/nirma/NMLRUCache.git",
19 "source_files": "NMLRUCache",
25 "frameworks": "UIKit",