Use persist_with under the explore parameter to specify a datagroup caching policy to use for that specific Explore.
To specify a default datagroup for all Explores in a model, you can use the persist_with parameter at the model level.
If you include a persist_with parameter under the explore parameter and also at the model level, the Explore will use the datagroup caching policy specified under the explore parameter.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-22 UTC."],[],[],null,["# persist_with (for Explores)\n\n\u003cbr /\u003e\n\n\u003e This page refers to the `persist_with` parameter that is part of an [Explore](/looker/docs/reference/param-explore-explore).\n\u003e\n\u003e `persist_with` can also be used as part of a model, described on the [`persist_with`](/looker/docs/reference/param-model-persist-with) parameter documentation page.\n\nUsage\n-----\n\n```\nexplore: explore_name {\n persist_with: airports_datagroup\n}\n```\n\nDefinition\n----------\n\nUse `persist_with` under the `explore` parameter to specify a [`datagroup`](/looker/docs/reference/param-model-datagroup) caching policy to use for that specific Explore.\n\u003e To specify a default datagroup for all Explores in a model, you can use the [`persist_with`](/looker/docs/reference/param-model-persist-with) parameter at the model level.\n\nIf you include a `persist_with` parameter under the `explore` parameter and also at the model level, the Explore will use the datagroup caching policy specified under the `explore` parameter.\n\nSee [caching](/looker/docs/caching-and-datagroups#specifying_caching_policies_with_datagroup_parameters) for an overview of datagroups.\n\nExample\n-------\n\nUse the `orders_datagroup` caching policy for an Explore: \n\n explore: customer_facts {\n persist_with: orders_datagroup\n ...\n }"]]