我用 cqsql --cql3 shell 创建了这个表:
CREATE TABLE Stats (
gsd blob,
period int,
tid blob,
sum int,
uniques blob,
PRIMARY KEY(gid, period, tid)
);
我正在使用clj-hector包装库。
我创建了集群和键空间对象:
(def clstr (h/cluster "Test Cluster" "localhost"))
(def ksp (h/keyspace clstr "mks"))
考虑到以前的结构,如何插入新行?如果你不熟悉 clj-hector,Hector 的代码肯定可以工作,我会将它变形为 Clojure。