SINTERReturn the intersection of the given sets (cross-shard gather).
| 语法 | SINTER key [key ...] |
| 分组 | set |
| 参数个数 | -2 |
| 起始版本 | 1.0.0 |
| 标志 | readonly |
| 复杂度 | O(sum of the source cardinalities) — there is NO smallest-set-first ordering, so SINTER huge tiny costs O(huge) where Redis costs O(tiny * k) |
| Redis 兼容性 | full |