Aerospike - LDT 最高记录创建错误
Aerospike - LDT Top Record Create Error
我在尝试将项目放入大列表时遇到错误。我在我的项目中使用了以下内容:
- Aerospike java 客户
- ldt 启用设置为 true
下面是报错的代码
LargeList llist = client.getClient().getLargeList(new WritePolicy(), key, binName);
llist.update(列表);
通过在大列表中逐一更新值而不是值列表来解决问题。
for(Object listItem: java.util.list){
llist.update(Value.get(listItem))
}
我在尝试将项目放入大列表时遇到错误。我在我的项目中使用了以下内容:
- Aerospike java 客户
- ldt 启用设置为 true
下面是报错的代码
LargeList llist = client.getClient().getLargeList(new WritePolicy(), key, binName);
llist.update(列表);
通过在大列表中逐一更新值而不是值列表来解决问题。
for(Object listItem: java.util.list){
llist.update(Value.get(listItem))
}