Skip to content

Commit 85fdd5d

Browse files
authored
Update
1 parent f45328d commit 85fdd5d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ memcached). While this is optional, using a non-taggable cache provider will
4848
mean that the entire cache is cleared each time a model is created, saved,
4949
updated, or deleted.
5050

51-
For the ease of maintenance, I would recommend adding a `BaseModel` model that
51+
For ease of maintenance, I would recommend adding a `BaseModel` model that
5252
extends `CachedModel`, from which all your other models are extended. If you
5353
don't want to do that, simply extend your models directly from `CachedModel`.
5454

@@ -66,7 +66,7 @@ abstract class BaseModel extends CachedModel
6666
```
6767

6868
### Exception: User Model
69-
I would not recommend caching the user model, as it is a special case since it
69+
I would not recommend caching the user model, as it is a special case, since it
7070
extends `Illuminate\Foundation\Auth\User`. Overriding that would break functionality.
7171
Not only that, but it probably isn't a good idea to cache the user model anyway,
7272
since you always want to pull the most up-to-date info on it.
@@ -99,8 +99,7 @@ In testing this has optimized performance on some pages up to 900%! Most often
9999
you should see somewhere around 100% performance increase.
100100

101101
## Commitment to Quality
102-
During package development I try as best as possible to embrace good design and
103-
development practices trying to ensure that this package is as good as it can
102+
During package development I try as best as possible to embrace good design and development practices, to help ensure that this package is as good as it can
104103
be. My checklist for package development includes:
105104

106105
- ✅ Achieve as close to 100% code coverage as possible using unit tests.

0 commit comments

Comments
 (0)