Custom Cache Strategies
The bundle provides a large set of cache strategies. However, you can define your own strategies if you need a specific behavior that is not already supported.
With a service that implement SpomkyLabs\PwaBundle\CachingStrategy\HasCacheStrategiesInterface
you will be able to return cache strategy objects.
The method process shall return valid JS as a string. This script will be executed by browsers.
src/MyCustomStrategies.php
If the service autoconfiguration is enable, the tag will be added automatically. Otherwise, you need to add the tag spomky_labs_pwa.cache_strategy
.
Cache Strategies are objects that implement CacheStrategyInterface
. The most important function is the rendered JS that will be injected to the Service Worker.
Last updated