The page you navigated to () does not exist, so we brought you to the closest page to it.
You have switched from the to the variant of this site. There is no equivalent of . We have taken you to the closest page in the variant.
1.16.16
flytekit.core.local_cache
Directory
Classes
| Class | Description |
|---|---|
LocalTaskCache |
This class implements a persistent store able to cache the result of local task executions. |
Variables
| Property | Type | Description |
|---|---|---|
CACHE_LOCATION |
str |
flytekit.core.local_cache.LocalTaskCache
This class implements a persistent store able to cache the result of local task executions.
Methods
| Method | Description |
|---|---|
clear() |
|
get() |
|
initialize() |
|
set() |
clear()
def clear()get()
def get(
task_name: str,
cache_version: str,
input_literal_map: flytekit.models.literals.LiteralMap,
cache_ignore_input_vars: typing.Tuple[str, ...],
) -> typing.Optional[flytekit.models.literals.LiteralMap]| Parameter | Type | Description |
|---|---|---|
task_name |
str |
|
cache_version |
str |
|
input_literal_map |
flytekit.models.literals.LiteralMap |
|
cache_ignore_input_vars |
typing.Tuple[str, ...] |
initialize()
def initialize()set()
def set(
task_name: str,
cache_version: str,
input_literal_map: flytekit.models.literals.LiteralMap,
cache_ignore_input_vars: typing.Tuple[str, ...],
value: flytekit.models.literals.LiteralMap,
)| Parameter | Type | Description |
|---|---|---|
task_name |
str |
|
cache_version |
str |
|
input_literal_map |
flytekit.models.literals.LiteralMap |
|
cache_ignore_input_vars |
typing.Tuple[str, ...] |
|
value |
flytekit.models.literals.LiteralMap |