hopinspace / responsecache
Library to help debugging client calls without heavily loading server with http calls
1.0.0
2018-10-06 11:53 UTC
Requires
- php: ^7.2
- guzzlehttp/guzzle: 6.*
This package is auto-updated.
Last update: 2024-11-07 00:58:22 UTC
README
Package is a middleware for client calls. It makes cache of current response that is reused for all other reapeatable calls.
Library is mainly dedicated for development of web scrapers or api clients.
Package extends Guzzle6 Client
HOW TO USE
- Register Hopinspace\Service\CacheableClient as a service, or use as a new object.
- CacheableClient injects $config thorugh constructor likewise Guzzle Client, but
it has a parameter called
requestCacheDirectory
that defaults to/var/www/html/var/cache/responseCache
.