Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/project/target-index-cache-metrics.ts
6446 views
1
/*
2
* target-index-cache-metrics.ts
3
*
4
* Copyright (C) 2020-2023 Posit Software, PBC
5
*/
6
7
/**
8
* Performance metrics for the input target index cache
9
* Tracks cache efficiency for optional performance profiling
10
*/
11
export const inputTargetIndexCacheMetrics = {
12
hits: 0,
13
misses: 0,
14
invalidations: 0,
15
};
16
17