Skip to content

Commit

Permalink
Use unordered list
Browse files Browse the repository at this point in the history
  • Loading branch information
mgacy committed Jan 10, 2024
1 parent 5a63b44 commit ef28a13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DiskCache

DiskCache is lightweight caching libary intended to persist arbitrary data to disk.
DiskCache is lightweight caching libary intended to persist arbitrary data to disk.

## 📱 Requirements

Expand All @@ -26,9 +26,9 @@ let cache = try DiskCache(storageType: .temporary(nil))

There are three storage type options, which inherently define the root directory where the cache resides:

`temporary` - Stores data in the user's `Cache` directory. This directory is subject to the system's normal cache purging rules. Data stored here should be assumed to be ephemeral and could be purged by the system at any time.
`permanent` - Stores data in the user's `Documents` directory. This will not be intentionally purged by the system and is safe to store long(er) term data.
`shared` - Stores data in the app's shared container with the given `appGroupID`. This type is great for sharing data between app and extension or sibling apps.
- `temporary` - Stores data in the user's `Cache` directory. This directory is subject to the system's normal cache purging rules. Data stored here should be assumed to be ephemeral and could be purged by the system at any time.
- `permanent` - Stores data in the user's `Documents` directory. This will not be intentionally purged by the system and is safe to store long(er) term data.
- `shared` - Stores data in the app's shared container with the given `appGroupID`. This type is great for sharing data between app and extension or sibling apps.

### Cache data:

Expand Down

0 comments on commit ef28a13

Please sign in to comment.