Skip to content

Commit abfa4aa

Browse files
Update README with new descriptions
1 parent 1835149 commit abfa4aa

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This package implements the following commands:
1313

1414
### wp cache
1515

16-
Manipulate the WP Object Cache object.
16+
Adds, removes, fetches, and flushes the WP Object Cache object.
1717

1818
~~~
1919
wp cache
@@ -40,7 +40,7 @@ for more detail.
4040

4141
### wp cache add
4242

43-
Add a value to the object cache.
43+
Adds a value to the object cache.
4444

4545
~~~
4646
wp cache add <key> <value> [<group>] [<expiration>]
@@ -79,7 +79,7 @@ be added.
7979

8080
### wp cache decr
8181

82-
Decrement a value in the object cache.
82+
Decrements a value in the object cache.
8383

8484
~~~
8585
wp cache decr <key> [<offset>] [<group>]
@@ -114,7 +114,7 @@ Errors if the value can't be decremented.
114114

115115
### wp cache delete
116116

117-
Remove a value from the object cache.
117+
Removes a value from the object cache.
118118

119119
~~~
120120
wp cache delete <key> [<group>]
@@ -143,7 +143,7 @@ Errors if the value can't be deleted.
143143

144144
### wp cache flush
145145

146-
Flush the object cache.
146+
Flushes the object cache.
147147

148148
~~~
149149
wp cache flush
@@ -166,7 +166,7 @@ Errors if the object cache can't be flushed.
166166

167167
### wp cache get
168168

169-
Get a value from the object cache.
169+
Gets a value from the object cache.
170170

171171
~~~
172172
wp cache get <key> [<group>]
@@ -195,7 +195,7 @@ Errors if the value doesn't exist.
195195

196196
### wp cache incr
197197

198-
Increment a value in the object cache.
198+
Increments a value in the object cache.
199199

200200
~~~
201201
wp cache incr <key> [<offset>] [<group>]
@@ -230,7 +230,7 @@ Errors if the value can't be incremented.
230230

231231
### wp cache replace
232232

233-
Replace a value in the object cache, if the value already exists.
233+
Replaces a value in the object cache, if the value already exists.
234234

235235
~~~
236236
wp cache replace <key> <value> [<group>] [<expiration>]
@@ -268,7 +268,7 @@ Errors if the value can't be replaced.
268268

269269
### wp cache set
270270

271-
Set a value to the object cache, regardless of whether it already exists.
271+
Sets a value to the object cache, regardless of whether it already exists.
272272

273273
~~~
274274
wp cache set <key> <value> [<group>] [<expiration>]
@@ -327,7 +327,7 @@ ability to determine which object cache is being used.
327327

328328
### wp transient
329329

330-
Manipulate the WordPress Transient Cache.
330+
Adds, gets, and deletes entries in the WordPress Transient Cache.
331331

332332
~~~
333333
wp transient
@@ -363,7 +363,7 @@ transient cache also uses the WordPress Object Cache.
363363

364364
### wp transient delete
365365

366-
Delete a transient value.
366+
Deletes a transient value.
367367

368368
~~~
369369
wp transient delete [<key>] [--network] [--all] [--expired]
@@ -401,7 +401,7 @@ wp transient delete [<key>] [--network] [--all] [--expired]
401401

402402
### wp transient get
403403

404-
Get a transient value.
404+
Gets a transient value.
405405

406406
~~~
407407
wp transient get <key> [--format=<format>] [--network]
@@ -438,7 +438,7 @@ wp transient get <key> [--format=<format>] [--network]
438438

439439
### wp transient set
440440

441-
Set a transient value.
441+
Sets a transient value.
442442

443443
~~~
444444
wp transient set <key> <value> [<expiration>] [--network]
@@ -469,7 +469,7 @@ wp transient set <key> <value> [<expiration>] [--network]
469469

470470
### wp transient type
471471

472-
Determine type of transients implementation.
472+
Determines the type of transients implementation.
473473

474474
~~~
475475
wp transient type

0 commit comments

Comments
 (0)