URL of the cache server.
How to configure your own results cache service
You can use the reference implementation in https://github.com/king/results-cache-service or implement your own server. To do that you need to provide the following API:
-
POST /job-results/{hash}/{result}: adds a new result in the cache for the provided job hash.
Path parameters:
- hash: calculated hash for the job execution
- result: job result
- GET /job-results/{hash}: returns a cached result from a job hash. Returns 'NOT_BUILT' if the job hash is not found.
Path parameters:
- hash: calculated hash for the job execution
- DELETE /job-results/clear: cleans the cache values.