VIEW.QUERYPage through a view's ordered members, optionally hydrating fields via the VIA template.
| 语法 | VIEW.QUERY name [LIMIT n] [CURSOR c] [FIELDS field ...] |
| 分组 | view |
| 参数个数 | -2 |
| 起始版本 | 3.0.0 |
| 标志 | readonly, extension |
| 复杂度 | virtual: O(log N_order + candidates * leaves) — it streams the ORDER index and probes membership per candidate, stopping at the limit, so it never materialises the member set. materialized: O(log M + limit). Adding FIELDS with VIA costs a SECOND fan-out to hydrate the rows |
| Redis 兼容性 | kevy-only: no Redis analogue. Absent by construction: no joins, no predicates at the view layer, no projection from the view itself, no HAVING, no aggregation |