Other serializers for results: <https://docs.prefe...
# pacc-july-17-18-2023
j
Copy code
from prefect.serializers import JSONSerializer

JSONSerializer(jsonlib="orjson")
Copy code
# This task will use a different serializer than the rest
@task(persist_result=True, result_serializer="json")
def three():
    return "three!"