用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill cassandra命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Cassandra |
| description | Design Cassandra tables, write efficient queries, and avoid distributed database pitfalls. |
| metadata | {"clawdbot":{"emoji":"👁️","requires":{"anyBins":["cqlsh","nodetool"]},"os":["linux","darwin","win32"]}} |
PRIMARY KEY (a, b, c): a is partition key, b and c are clustering columnsPRIMARY KEY ((a, b), c): (a, b) together is partition key—compound partition keyWHERE must include full partition key—partial partition key fails unless ALLOW FILTERINGALLOW FILTERING scans all nodes—never use in production; redesign table insteadWHERE a = ? AND b > ? works, WHERE a = ? AND c > ? doesn'tIN on partition key hits multiple nodes—expensive; prefer single partition queriesQUORUM for most operations—majority of replicas; balances consistency and availabilityLOCAL_QUORUM for multi-datacenter—avoids cross-DC latencyONE for pure availability—may read stale data; fine for caches, bad for critical readsQUORUM + QUORUM safenodetool cfstats -H table—Tombstone columns show problemSELECT *—always list columns; schema changes break queriesIF NOT EXISTS / IF column = ?—uses Paxos, 4x slower than normal writeSERIAL or LOCAL_SERIAL[applied] boolean—must check if operation succeededSizeTieredCompactionStrategy (default)—good for write-heavy, uses more disk spaceLeveledCompactionStrategy—better read latency, higher write amplificationTimeWindowCompactionStrategy—for time-series with TTL; reduces tombstone overheadnodetool repair regularly—inconsistencies accumulate without repairnodetool status shows cluster health—UN (Up Normal) is good, DN is downnodetool describecluster to show agreement