我想知道如何在 cqlengine 中使用集合我可以将值插入到列表中,但只能插入一个值,所以我不能将一些值附加到我的列表中我想这样做: 在 CQL3 中:
UPDATE users
SET top_places = [ 'the shire' ] + top_places WHERE user_id = 'frodo';
在 CqlEngine 中:
connection.setup(['127.0.0.1:9160'])
TestModel.create(id=1,field1 = [2])
此代码会将 2 添加到我的列表中,但是当我插入新值时,它会替换为列表中的旧值。
Cqlengine 中的唯一帮助: https ://cqlengine.readthedocs.org/en/latest/topics/columns.html#collection-type-columns
而且我想知道如何通过 cqlengine 读取集合字段。它是我的 django 项目中的字典吗?我怎么能用它?!!
请帮忙。谢谢