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: mkdocs/docs/recipe-count.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,24 @@ The count operation is highly efficient because:
57
57
-**Filter pushdown**: Eliminates files that don't match criteria
58
58
-**Cached statistics**: Utilizes pre-computed record counts
59
59
60
+
!!! tip "Even Faster: Use Snapshot Properties"
61
+
62
+
For the fastest possible total row count (without filters), you can access the cached count directly from snapshot properties, avoiding any table scanning:
63
+
64
+
```python
65
+
# Get total records from snapshot metadata (fastest method)
0 commit comments