Skip to content

Commit b0de584

Browse files
authored
Update README.md
1 parent b27df71 commit b0de584

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

README.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ A multi-purpose cache engine PSR-6 and PSR-16 implementation with several driver
1414
PSR-16 defines a Simple Cache interface with less verbosity than PSR-6. Below a list
1515
of engines available in this library that is PSR-16 compliant:
1616

17-
{:.table}
18-
1917
| Class | Description |
2018
|:---------------------------------------------------------------------------------|:--------------------------------------------------------------------|
21-
| [\ByJG\Cache\Psr16\NoCacheEngine](docs/class-no-cache-engine.md) | Do nothing. Use it for disable the cache without change your code |
22-
| [\ByJG\Cache\Psr16\ArrayCacheEngine](docs/class-array-cache-engine.md) | Local cache only using array. It does not persists between requests |
23-
| [\ByJG\Cache\Psr16\FileSystemCacheEngine](docs/class-filesystem-cache-engine.md) | Save the cache result in the local file system |
24-
| [\ByJG\Cache\Psr16\MemcachedEngine](docs/class-memcached-engine.md) | Uses the Memcached as the cache engine |
25-
| [\ByJG\Cache\Psr16\RedisCachedEngine](docs/class-redis-cache-engine.md) | uses the Redis as cache |
26-
| [\ByJG\Cache\Psr16\SessionCachedEngine](docs/class-session-cache-engine.md) | uses the PHP session as cache |
27-
| [\ByJG\Cache\Psr16\ShmopCachedEngine](docs/class-shmop-cache-engine.md) | uses the shared memory area for cache |
19+
| [\ByJG\Cache\Psr16\NoCacheEngine](class-no-cache-engine.md) | Do nothing. Use it for disable the cache without change your code |
20+
| [\ByJG\Cache\Psr16\ArrayCacheEngine](class-array-cache-engine.md) | Local cache only using array. It does not persists between requests |
21+
| [\ByJG\Cache\Psr16\FileSystemCacheEngine](class-filesystem-cache-engine.md) | Save the cache result in the local file system |
22+
| [\ByJG\Cache\Psr16\MemcachedEngine](class-memcached-engine.md) | Uses the Memcached as the cache engine |
23+
| [\ByJG\Cache\Psr16\RedisCachedEngine](class-redis-cache-engine.md) | uses the Redis as cache |
24+
| [\ByJG\Cache\Psr16\SessionCachedEngine](class-session-cache-engine.md) | uses the PHP session as cache |
25+
| [\ByJG\Cache\Psr16\ShmopCachedEngine](class-shmop-cache-engine.md) | uses the shared memory area for cache |
2826

2927
To create a new Cache Instance just create the proper cache engine and use it:
3028

@@ -43,7 +41,7 @@ if ($cache->has('key')) {
4341
$object = $cache->get('key');
4442
```
4543

46-
See more PSR-16 examples [here](docs/basic-usage-psr16-simplecache.md)
44+
See more PSR-16 examples [here](basic-usage-psr16-simplecache.md)
4745

4846
## PSR-6
4947

@@ -63,14 +61,12 @@ $cachePool = \ByJG\Cache\Factory::createFilePool();
6361
$cachePool = new CachePool(new FileSystemCacheEngine());
6462
```
6563

66-
See more PSR-6 examples [here](docs/basic-usage-psr6-cachepool.md)
64+
See more PSR-6 examples [here](basic-usage-psr6-cachepool.md)
6765

6866
## List of Available Factory Commands
6967

7068
**Note: All parameters are optional**
7169

72-
{:.table}
73-
7470
| Engine | Factory Command |
7571
|:-----------------|:----------------------------------------------------------------------|
7672
| No Cache | Factory::createNullPool($prefix, $bufferSize, $logger); |
@@ -93,7 +89,7 @@ The Common parameters are:
9389

9490
You can add a PSR Log compatible to the constructor in order to get Log of the operations
9591

96-
See log examples [here](docs/setup-log-handler.md)
92+
See log examples [here](setup-log-handler.md)
9793

9894
## Use a PSR-11 container to retrieve the cache keys
9995

0 commit comments

Comments
 (0)