(dstId?: string)
| 73 | } |
| 74 | |
| 75 | export const clearComputeCache = (dstId?: string) => { |
| 76 | ExpCache.clearAll(); |
| 77 | if (dstId) { |
| 78 | CacheManager.clearDsCache(dstId); |
| 79 | } else { |
| 80 | CacheManager.clear(); |
| 81 | } |
| 82 | if (computeCache) { |
| 83 | computeCache.clear(); |
| 84 | } |
| 85 | }; |
| 86 | |
| 87 | /** |
| 88 | * clear cached selectors |
no test coverage detected