You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: collection.go
+7
Original file line number
Diff line number
Diff line change
@@ -296,6 +296,13 @@ type CollectionStatistics struct {
296
296
// The memory used for storing the revisions of this collection in the storage engine (in bytes). This figure does not include the document data but only mappings from document revision ids to storage engine datafile positions.
// CacheHits the total number of index entries read from in-memory caches for indexes of type edge or persistent.
88
+
// This value will only be non-zero when reading from indexes that have an in-memory cache enabled,
89
+
// and when the query allows using the in-memory cache (i.e. using equality lookups on all index attributes).
90
+
CacheHitsuint64`json:"cacheHits,omitempty"`
91
+
// CacheMisses the total number of cache read attempts for index entries that could not be served from in-memory caches for indexes of type edge or persistent.
92
+
// This value will only be non-zero when reading from indexes that have an in-memory cache enabled,
93
+
// the query allows using the in-memory cache (i.e. using equality lookups on all index attributes) and the looked up values are not present in the cache.
// CacheHits the total number of index entries read from in-memory caches for indexes of type edge or persistent.
84
+
// This value will only be non-zero when reading from indexes that have an in-memory cache enabled,
85
+
// and when the query allows using the in-memory cache (i.e. using equality lookups on all index attributes).
86
+
CacheHitsuint64`json:"cacheHits,omitempty"`
87
+
// CacheMisses the total number of cache read attempts for index entries that could not be served from in-memory caches for indexes of type edge or persistent.
88
+
// This value will only be non-zero when reading from indexes that have an in-memory cache enabled,
89
+
// the query allows using the in-memory cache (i.e. using equality lookups on all index attributes) and the looked up values are not present in the cache.
0 commit comments