> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Context.job_cache

```python theme={"system"}
ExecutionContext.job_cache: JobCache
```

Access the job cache for a task.

<RequestExample>
  ```python Python theme={"system"}
  # within a Tasks execute method, access the job cache
  # def execute(self, context: ExecutionContext):
  context.job_cache["some-key"] = b"my-value"
  ```
</RequestExample>
