Skip to content

Commit

Permalink
Layout changes in the README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rocboronat authored Jun 1, 2017
1 parent 7593f99 commit 08abe5c
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
Expand Up @@ -27,11 +27,11 @@ cache.remove("key"); // and remove it if you want.
cache.get("unExistingKey"); // If something doesn't exists, it returns null
cache.get("tooOldKey"); // The same if a key is too old

cache.clear(); // You can also clean it,
cache.clear(); // You can also clear it,
cache.size(); // and ask it how many elements it has

QNCache<String> stringCache = new QNCacheBuilder().createQNCache(); //You can also make it typesafe
stringCache.set("key", 42); //so this line does not compile :)
QNCache<String> stringCache = new QNCacheBuilder().createQNCache(); // You can also make it typesafe
stringCache.set("key", 42); // so this line does not compile :)
```

Let's talk about the memory
Expand Down

0 comments on commit 08abe5c

Please sign in to comment.