📄️ Overview
Isolated Functions are Python functions that use the @isolated decorator.
📄️ Managing Environments
The @isolated decorator supports two types of target environments
📄️ Keep-Alive - Reusing functions
The keep_alive argument is used with the @isolated decorator to specify the number of seconds that a target environment should be kept alive after a function is executed.
📄️ Cached functions: Caching the Output of Functions for Improved Performance
The @cached decorator is a tool for improving the performance of your isolated function. When a function is decorated with @cached, it is referred to as a "cached function."
📄️ Scheduling runs
Functions can also be scheduled to run at specific times and/or frequency using cron expressions.