Skip to content

Commit

Permalink
add 3.0 title
Browse files Browse the repository at this point in the history
  • Loading branch information
aschuch committed Jun 3, 2016
1 parent c413d73 commit d24da17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Awesome Cache
# Awesome Cache 3

[![Build Status](https://travis-ci.org/aschuch/AwesomeCache.svg)](https://travis-ci.org/aschuch/AwesomeCache)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/AwesomeCache.svg)](https://img.shields.io/cocoapods/v/AwesomeCache.svg)
Expand Down Expand Up @@ -31,7 +31,7 @@ AwesomeCache 3 is designed to have a sync API, making it easy to reason about th
The internals of the cache use a concurrent dispatch queue, that syncs reads and writes for thread safety. In case a particular caching operation blocks your main thread for too long, consider offloading the read and write operations to a different thread.

```swift
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
cache["name"] = "Alex"
}
```
Expand Down Expand Up @@ -129,4 +129,4 @@ xctool -scheme AwesomeCacheTests -sdk iphonesimulator test
Feel free to get in touch.

* Website: <http://schuch.me>
* Twitter: [@schuchalexander](http://twitter.com/schuchalexander)
* Twitter: [@schuchalexander](http://twitter.com/schuchalexander)

0 comments on commit d24da17

Please sign in to comment.