@@ -16,13 +16,13 @@ of engines available in this library that is PSR-16 compliant:
16
16
17
17
| Class | Description |
18
18
| :---------------------------------------------------------------------------------| :--------------------------------------------------------------------|
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 |
19
+ | [ \ByJG\Cache\Psr16\NoCacheEngine] ( docs/ class-no-cache-engine.md) | Do nothing. Use it for disable the cache without change your code |
20
+ | [ \ByJG\Cache\Psr16\ArrayCacheEngine] ( docs/ class-array-cache-engine.md) | Local cache only using array. It does not persists between requests |
21
+ | [ \ByJG\Cache\Psr16\FileSystemCacheEngine] ( docs/ class-filesystem-cache-engine.md) | Save the cache result in the local file system |
22
+ | [ \ByJG\Cache\Psr16\MemcachedEngine] ( docs/ class-memcached-engine.md) | Uses the Memcached as the cache engine |
23
+ | [ \ByJG\Cache\Psr16\RedisCachedEngine] ( docs/ class-redis-cache-engine.md) | uses the Redis as cache |
24
+ | [ \ByJG\Cache\Psr16\SessionCachedEngine] ( docs/ class-session-cache-engine.md) | uses the PHP session as cache |
25
+ | [ \ByJG\Cache\Psr16\ShmopCachedEngine] ( docs/ class-shmop-cache-engine.md) | uses the shared memory area for cache |
26
26
27
27
To create a new Cache Instance just create the proper cache engine and use it:
28
28
@@ -41,7 +41,7 @@ if ($cache->has('key')) {
41
41
$object = $cache->get('key');
42
42
```
43
43
44
- See more PSR-16 examples [ here] ( basic-usage-psr16-simplecache.md )
44
+ See more PSR-16 examples [ here] ( docs/ basic-usage-psr16-simplecache.md)
45
45
46
46
## PSR-6
47
47
@@ -61,7 +61,7 @@ $cachePool = \ByJG\Cache\Factory::createFilePool();
61
61
$cachePool = new CachePool(new FileSystemCacheEngine());
62
62
```
63
63
64
- See more PSR-6 examples [ here] ( basic-usage-psr6-cachepool.md )
64
+ See more PSR-6 examples [ here] ( docs/ basic-usage-psr6-cachepool.md)
65
65
66
66
## List of Available Factory Commands
67
67
@@ -89,7 +89,7 @@ The Common parameters are:
89
89
90
90
You can add a PSR Log compatible to the constructor in order to get Log of the operations
91
91
92
- See log examples [ here] ( setup-log-handler.md )
92
+ See log examples [ here] ( docs/ setup-log-handler.md)
93
93
94
94
## Use a PSR-11 container to retrieve the cache keys
95
95
0 commit comments