We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5cdf0 commit 9c71573Copy full SHA for 9c71573
README.md
@@ -285,6 +285,37 @@ return [
285
];
286
```
287
288
+### Caching feature
289
+
290
+Either run
291
292
+```bash
293
+$ composer require league/flysystem-cached-adapter
294
+```
295
296
+or add
297
298
299
+"league/flysystem-cached-adapter": "~1.0"
300
301
302
+to the `require` section of your `composer.json` file and configure `fsID` application component as follows
303
304
+```php
305
+return [
306
+ //...
307
+ 'components' => [
308
309
+ 'fsID' => [
310
311
+ 'cache' => 'cacheID',
312
+ // 'cacheKey' => 'flysystem',
313
+ // 'cacheDuration' => 3600,
314
+ ],
315
316
+];
317
318
319
### Replication feature
320
321
Either run
0 commit comments