VIEW.CREATEDeclare a composed view over indexes with an ORDER BY (catalog mutation, sidecar-persisted).
| 语法 | VIEW.CREATE name QUERY tree ORDER BY index [DESC] [MODE virtual|materialized] [TOPK k] [VIA template] (tree = '( AND|OR|DIFF sub sub )' | 'index RANGE min max' | 'index EQ value') |
| 分组 | view |
| 参数个数 | -8 |
| 起始版本 | 3.0.0 |
| 标志 | write, extension |
| 复杂度 | O(tree size) at the call. A materialized view builds lazily on the next tick (a full eval_tree plus an O(M log M) sort); a virtual view builds nothing, ever |
| Redis 兼容性 | kevy-only: no Redis analogue. A view is neither a stored query nor a join — it is a named composition tree over declared indexes that stores membership and order only, never field values |